// File: BinLDrivers.cxx // Created: 29.10.02 18:44:39 // Author: Michael SAZONOV // Copyright: Open CASCADE 2002 #include #include #include #include //#include #include #include #include #include #include // avoid warnings on 'extern "C"' functions returning C++ classes #ifdef _MSC_VER #pragma warning(disable:4190) #endif static Standard_GUID BinLStorageDriver ("13a56835-8269-11d5-aab2-0050044b1af1"); static Standard_GUID BinLRetrievalDriver("13a56836-8269-11d5-aab2-0050044b1af1"); #define CURRENT_DOCUMENT_VERSION 6 //======================================================================= //function : Factory //purpose : PLUGIN FACTORY //======================================================================= Handle(Standard_Transient) BinLDrivers::Factory(const Standard_GUID& theGUID) { if (theGUID == BinLStorageDriver) { cout << "BinLDrivers : Storage Plugin" << endl; static Handle(BinLDrivers_DocumentStorageDriver) model_sd = new BinLDrivers_DocumentStorageDriver; return model_sd; } if (theGUID == BinLRetrievalDriver) { cout << "BinLDrivers : Retrieval Plugin" << endl; static Handle(BinLDrivers_DocumentRetrievalDriver) model_rd = new BinLDrivers_DocumentRetrievalDriver; return model_rd; } Standard_Failure::Raise ("BinLDrivers : unknown GUID"); return NULL; } //======================================================================= //function : AttributeDrivers //purpose : //======================================================================= Handle(BinMDF_ADriverTable) BinLDrivers::AttributeDrivers (const Handle(CDM_MessageDriver)& aMsgDrv) { Handle(BinMDF_ADriverTable) aTable = new BinMDF_ADriverTable; BinMDF ::AddDrivers (aTable, aMsgDrv); BinMDataStd ::AddDrivers (aTable, aMsgDrv); BinMFunction ::AddDrivers (aTable, aMsgDrv); BinMDocStd ::AddDrivers (aTable, aMsgDrv); // BinMNaming ::AddDrivers (aTable, aMsgDrv); // BinMPrsStd ::AddDrivers (aTable, aMsgDrv); return aTable; } //======================================================================= //function : StorageVersion //purpose : //======================================================================= TCollection_AsciiString BinLDrivers::StorageVersion() { TCollection_AsciiString aVersionStr (CURRENT_DOCUMENT_VERSION); return aVersionStr; } PLUGIN(BinLDrivers)