blob: 1ccbd52bc7fa24100093ab34da17caf72d129bed (
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
|
// File: XSDrivers.cxx
// Created: Wed May 24 11:21:25 2000
// Author: Edward AGAPOV
// <det@strelox.nnov.matra-dtv.fr>
#include <XCAFDrivers.ixx>
#include <XCAFDrivers_DocumentStorageDriver.hxx>
#include <XCAFDrivers_DocumentRetrievalDriver.hxx>
#include <XCAFSchema.hxx>
#include <Standard_Failure.hxx>
#include <Standard_GUID.hxx>
#include <StdDrivers.hxx>
#include <Storage_HArrayOfSchema.hxx>
#include <StdSchema.hxx>
#include <StdLSchema.hxx>
#include <ShapeSchema.hxx>
#include <Plugin_Macro.hxx>
// avoid warnings on 'extern "C"' functions returning C++ classes
#ifdef _MSC_VER
#pragma warning(disable:4190)
#endif
static Standard_GUID XSStorageDriver ("ed8793f8-3142-11d4-b9b5-0060b0ee281b");
static Standard_GUID XSRetrievalDriver("ed8793f9-3142-11d4-b9b5-0060b0ee281b");
static Standard_GUID XCAFSchemaID ("ed8793fa-3142-11d4-b9b5-0060b0ee281b");
Handle(Standard_Transient) XCAFDrivers::Factory(const Standard_GUID& aGUID) {
if(aGUID == XCAFSchemaID) {
cout << "XCAFSchema : Plugin" << endl;
static Handle(XCAFSchema) model_ss;
static Standard_Boolean IsInitialized = Standard_False;
if (! IsInitialized)
{
IsInitialized = Standard_True;
model_ss = new XCAFSchema;
// nest Standard schema
Handle(Storage_HArrayOfSchema) aSchemaArray = new Storage_HArrayOfSchema (1, 3);
aSchemaArray->SetValue (1, new StdLSchema);
aSchemaArray->SetValue (2, new StdSchema);
aSchemaArray->SetValue (3, new ShapeSchema);
model_ss->SetNestedSchemas (aSchemaArray);
}
return model_ss;
}
if(aGUID == XSStorageDriver)
{
cout << "XCAFDrivers : Storage Plugin" << endl;
static Handle(XCAFDrivers_DocumentStorageDriver) model_sd
= new XCAFDrivers_DocumentStorageDriver;
return model_sd;
}
if(aGUID == XSRetrievalDriver)
{
cout << "XCAFDrivers : Retrieval Plugin" << endl;
static Handle (XCAFDrivers_DocumentRetrievalDriver) model_rd
= new XCAFDrivers_DocumentRetrievalDriver;
return model_rd;
}
return StdDrivers::Factory (aGUID);
}
PLUGIN(XCAFDrivers)
|