// Created on: 2005-04-18 // Created by: Eugeny NAPALKOV // Copyright (c) 2005-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and / or modify it // under the terms of the GNU Lesser General Public version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #include #include #include #include #include #include #include static Standard_GUID BinXCAFStorageDriver ("a78ff496-a779-11d5-aab4-0050044b1af1"); static Standard_GUID BinXCAFRetrievalDriver("a78ff497-a779-11d5-aab4-0050044b1af1"); //======================================================================= //function : //purpose : //======================================================================= Handle(Standard_Transient) BinXCAFDrivers::Factory(const Standard_GUID& theGUID) { if (theGUID == BinXCAFStorageDriver) { cout << "BinXCAFDrivers : Storage Plugin" << endl; static Handle(BinXCAFDrivers_DocumentStorageDriver) model_sd = new BinXCAFDrivers_DocumentStorageDriver; return model_sd; } if (theGUID == BinXCAFRetrievalDriver) { cout << "BinXCAFDrivers : Retrieval Plugin" << endl; static Handle(BinXCAFDrivers_DocumentRetrievalDriver) model_rd = new BinXCAFDrivers_DocumentRetrievalDriver; return model_rd; } Standard_Failure::Raise ("XCAFBinDrivers : unknown GUID"); return NULL; } //======================================================================= //function : //purpose : //======================================================================= Handle(BinMDF_ADriverTable) BinXCAFDrivers::AttributeDrivers(const Handle(CDM_MessageDriver)& aMsgDrv) { // Standard Drivers Handle(BinMDF_ADriverTable) aTable = BinDrivers::AttributeDrivers(aMsgDrv); // XCAF Drivers BinMXCAFDoc::AddDrivers(aTable, aMsgDrv); return aTable; } #ifdef _MSC_VER #pragma warning(disable:4190) /* disable warning on C++ type returned by C function; should be OK for C++ usage */ #endif PLUGIN(BinXCAFDrivers)