0023948: Wrong intersection between a surface of revolution and a plane.
[occt.git] / src / XmlDrivers / XmlDrivers.cxx
1 // Created on: 2001-07-09
2 // Created by: Julia DOROVSKIKH
3 // Copyright (c) 2001-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 #include <XmlDrivers.ixx>
17
18 #include <XmlDrivers_DocumentStorageDriver.hxx>
19 #include <XmlDrivers_DocumentRetrievalDriver.hxx>
20 #include <XmlMDF_ADriverTable.hxx>
21 #include <XmlMDF.hxx>
22 #include <XmlMDataStd.hxx>
23 #include <XmlMDataXtd.hxx>
24 #include <XmlMDocStd.hxx>
25 #include <XmlMNaming.hxx>
26 #include <XmlMPrsStd.hxx>
27 #include <XmlMFunction.hxx>
28
29 #include <Standard_GUID.hxx>
30
31 #include <locale.h>
32 #include <time.h>
33
34 #include <Plugin_Macro.hxx>
35
36 static Standard_GUID XmlStorageDriver  ("03a56820-8269-11d5-aab2-0050044b1af1");
37 static Standard_GUID XmlRetrievalDriver("03a56822-8269-11d5-aab2-0050044b1af1");
38
39 //=======================================================================
40 //function : Factory
41 //purpose  : PLUGIN FACTORY
42 //=======================================================================
43 Handle(Standard_Transient) XmlDrivers::Factory(const Standard_GUID& theGUID)
44 {
45   if (theGUID == XmlStorageDriver)
46   {
47     cout << "XmlDrivers : Storage Plugin" << endl;
48     static Handle(XmlDrivers_DocumentStorageDriver) model_sd =
49       new XmlDrivers_DocumentStorageDriver
50         ("Copyright: Open Cascade, 2001-2002"); // default copyright
51     return model_sd;
52   }
53
54   if (theGUID == XmlRetrievalDriver)
55   {
56     cout << "XmlDrivers : Retrieval Plugin" << endl;
57     static Handle (XmlDrivers_DocumentRetrievalDriver) model_rd =
58       new XmlDrivers_DocumentRetrievalDriver ();
59     return model_rd;
60   }
61  
62   Standard_Failure::Raise ("XmlDrivers : unknown GUID");
63   return NULL;
64 }
65
66 //=======================================================================
67 //function : AttributeDrivers
68 //purpose  : 
69 //=======================================================================
70 Handle(XmlMDF_ADriverTable) XmlDrivers::AttributeDrivers
71                 (const Handle(CDM_MessageDriver)& theMessageDriver)
72 {
73   Handle(XmlMDF_ADriverTable) aTable = new XmlMDF_ADriverTable();
74   //
75   XmlMDF        ::AddDrivers (aTable, theMessageDriver);
76   XmlMDataStd   ::AddDrivers (aTable, theMessageDriver);
77   XmlMDataXtd   ::AddDrivers (aTable, theMessageDriver);  
78   XmlMNaming    ::AddDrivers (aTable, theMessageDriver);
79   XmlMFunction  ::AddDrivers (aTable, theMessageDriver); 
80   XmlMDocStd    ::AddDrivers (aTable, theMessageDriver); 
81   XmlMPrsStd    ::AddDrivers (aTable, theMessageDriver); 
82   //
83   return aTable;
84 }
85
86 #ifdef _MSC_VER
87 #pragma warning(disable:4190) /* disable warning on C++ type returned by C function; should be OK for C++ usage */
88 #endif
89
90 // Declare entry point PLUGINFACTORY
91 PLUGIN(XmlDrivers)