blob: b3f40c66791689e0dfa3895070461614c98d28a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// File: TopoDS_TCompound.cxx
// Created: Fri Apr 12 15:11:28 1991
// Author: Remi LEQUETTE
#include <TopoDS_TCompound.ixx>
#include <TopAbs.hxx>
//=======================================================================
//function : ShapeType
//purpose :
//=======================================================================
TopAbs_ShapeEnum TopoDS_TCompound::ShapeType() const
{
return TopAbs_COMPOUND;
}
//=======================================================================
//function : EmptyCopy
//purpose :
//=======================================================================
Handle(TopoDS_TShape) TopoDS_TCompound::EmptyCopy() const
{
return Handle(TopoDS_TCompound)(new TopoDS_TCompound());
}
|