blob: d5608d4d5451770e7aa351c9fdf05e5a62d0f72c (
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
|
#define XTRACE
#define XDESTROY
// File Graphic3d_DataStructureManager.cxx
// Created 24 fevrier 1995
// Author CAL
// 11/97 ; CAL : retrait des DataStructure
//-Copyright MatraDatavision 1995
//-Version
//-Design
//-Warning
//-References
//-Language C++ 2.0
//-Declarations
// for the class
#include <Graphic3d_DataStructureManager.ixx>
//-Aliases
//-Global data definitions
//-Constructors
Graphic3d_DataStructureManager::Graphic3d_DataStructureManager () {
}
//-Destructors
void Graphic3d_DataStructureManager::Destroy () {
#ifdef DESTROY
cout << "Graphic3d_DataStructureManager::Destroy ()\n";
#endif
}
|