File indexing completed on 2025-12-16 10:22:27
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _Prs3d_Root_HeaderFile
0018 #define _Prs3d_Root_HeaderFile
0019
0020 #include <Graphic3d_Group.hxx>
0021 #include <Prs3d_Presentation.hxx>
0022 #include <Standard.hxx>
0023 #include <Standard_DefineAlloc.hxx>
0024 #include <Standard_Handle.hxx>
0025
0026
0027 class Prs3d_Root
0028 {
0029 public:
0030
0031 DEFINE_STANDARD_ALLOC
0032
0033 Standard_DEPRECATED("This method is deprecated - Prs3d_Presentation::CurrentGroup() should be called instead")
0034 static Handle(Graphic3d_Group) CurrentGroup (const Handle(Prs3d_Presentation)& thePrs3d)
0035 {
0036 return thePrs3d->CurrentGroup();
0037 }
0038
0039 Standard_DEPRECATED("This method is deprecated - Prs3d_Presentation::NewGroup() should be called instead")
0040 static Handle(Graphic3d_Group) NewGroup (const Handle(Prs3d_Presentation)& thePrs3d)
0041 {
0042 return thePrs3d->NewGroup();
0043 }
0044
0045 };
0046
0047 #endif