summaryrefslogtreecommitdiff
path: root/src/PrsMgr/PrsMgr_ModedPresentation.cxx
blob: 3fc6db71413fdf45f402501c45e48617bc4d2152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <PrsMgr_ModedPresentation.ixx>

PrsMgr_ModedPresentation::PrsMgr_ModedPresentation() {}

PrsMgr_ModedPresentation::PrsMgr_ModedPresentation(const Handle(PrsMgr_Presentation)& aPresentation, const Standard_Integer aMode): myPresentation(aPresentation), myMode(aMode) {
}

Handle(PrsMgr_Presentation) PrsMgr_ModedPresentation::Presentation () const {

  return myPresentation;

}

Standard_Integer PrsMgr_ModedPresentation::Mode () const {
  return myMode;
}