blob: ed4fd23fcc4cdb193bdea093310a547c00f085f6 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
// File: PCDMShape_Document.cxx
// Created: Thu Jan 8 15:59:23 1998
// Author: Isabelle GRIGNON
// <isg@bigbox.paris1.matra-dtv.fr>
#include <PCDMShape_Document.ixx>
//=======================================================================
//function : PCDMShape_Document
//purpose :
//=======================================================================
PCDMShape_Document::PCDMShape_Document()
{}
//=======================================================================
//function : PCDMShape_Document
//purpose :
//=======================================================================
PCDMShape_Document::PCDMShape_Document(const PTopoDS_Shape1& T)
: myShape(T)
{}
//=======================================================================
//function : TShape
//purpose :
//=======================================================================
const PTopoDS_Shape1 PCDMShape_Document::Shape()const
{ return myShape; }
//=======================================================================
//function : TShape
//purpose :
//=======================================================================
void PCDMShape_Document::Shape(const PTopoDS_Shape1& T)
{ myShape = T; }
|