blob: c3f086a19617b4f0d8af85ef1b8d65122765dbad (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
// File: TObj_Persistence.cxx
// Created: Tue Nov 23 11:36:45 2004
// Author: Andrey BETENEV
// Copyright: Open CASCADE 2007
// The original implementation Copyright: (C) RINA S.p.A
#include <TObj_Persistence.hxx>
#include <TObj_Object.hxx>
//=======================================================================
//function : getMapOfTypes
//purpose : Returns the map of types
//=======================================================================
TObj_DataMapOfStringPointer& TObj_Persistence::getMapOfTypes ()
{
static TObj_DataMapOfStringPointer myMapOfTypes;
return myMapOfTypes;
}
//=======================================================================
//function : Constructor
//purpose : Register the type for persistence
//=======================================================================
TObj_Persistence::TObj_Persistence (const Standard_CString theType)
{
myType = theType;
getMapOfTypes().Bind ( theType, this );
}
//=======================================================================
//function : Destructor
//purpose : Unregister the type
//=======================================================================
TObj_Persistence::~TObj_Persistence ()
{
getMapOfTypes().UnBind ( myType );
}
//=======================================================================
//function : CreateNewObject
//purpose :
//=======================================================================
Handle(TObj_Object) TObj_Persistence::CreateNewObject (const Standard_CString theType,
const TDF_Label& theLabel)
{
if ( getMapOfTypes().IsBound ( theType ) )
{
TObj_Persistence *tool =
(TObj_Persistence*) getMapOfTypes().Find ( theType );
if ( tool ) return tool->New (theLabel);
}
return 0;
}
//=======================================================================
//function : DumpTypes
//purpose :
//=======================================================================
void TObj_Persistence::DumpTypes (Standard_OStream &theOs)
{
TObj_DataMapOfStringPointer::Iterator it ( getMapOfTypes() );
for ( ; it.More(); it.Next() )
{
theOs << it.Key() << endl;
}
}
|