mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-16 10:08:36 +03:00
Definition of PLUGINFACTORY function changed to return Standard_Transient* instead of Handle(Standard_Transient), which cannot be returned by C-style function. Default implementation of PLUGINFACTORY() instantiated by macro PLUGIN() is corrected accordingly. Methods Factory() in persistence packages are made returning const & to handle; this is to reflect the fact that returned handle should point to existing object (usually statically allocated) rather than new one.
75 lines
2.8 KiB
C++
75 lines
2.8 KiB
C++
// Created on: 2004-11-24
|
|
// Created by: Michael SAZONOV
|
|
// Copyright (c) 2004-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 License 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.
|
|
|
|
// The original implementation Copyright: (C) RINA S.p.A
|
|
|
|
#include <XmlLDrivers.hxx>
|
|
#include <XmlTObjDrivers.hxx>
|
|
#include <XmlMDF_ADriverTable.hxx>
|
|
#include <XmlTObjDrivers_DocumentStorageDriver.hxx>
|
|
#include <XmlTObjDrivers_DocumentRetrievalDriver.hxx>
|
|
#include <XmlTObjDrivers_ModelDriver.hxx>
|
|
#include <XmlTObjDrivers_ObjectDriver.hxx>
|
|
#include <XmlTObjDrivers_ReferenceDriver.hxx>
|
|
#include <XmlTObjDrivers_XYZDriver.hxx>
|
|
#include <XmlTObjDrivers_IntSparseArrayDriver.hxx>
|
|
|
|
#include <Plugin_Macro.hxx>
|
|
|
|
static Standard_GUID XmlStorageDriver ("f78ff4a0-a779-11d5-aab4-0050044b1af1");
|
|
static Standard_GUID XmlRetrievalDriver("f78ff4a1-a779-11d5-aab4-0050044b1af1");
|
|
|
|
const Handle(Standard_Transient)& XmlTObjDrivers::Factory(const Standard_GUID& aGUID)
|
|
{
|
|
if(aGUID == XmlStorageDriver)
|
|
{
|
|
#ifdef OCCT_DEBUG
|
|
cout << "XmlTObjDrivers : Storage Plugin" << endl;
|
|
#endif
|
|
static Handle(XmlTObjDrivers_DocumentStorageDriver) model_sd
|
|
= new XmlTObjDrivers_DocumentStorageDriver
|
|
("Copyright: Open CASCADE 2004"); // default copyright
|
|
return model_sd;
|
|
}
|
|
|
|
if(aGUID == XmlRetrievalDriver)
|
|
{
|
|
#ifdef OCCT_DEBUG
|
|
cout << "XmlTObjDrivers : Retrieval Plugin" << endl;
|
|
#endif
|
|
static Handle (XmlTObjDrivers_DocumentRetrievalDriver) model_rd
|
|
= new XmlTObjDrivers_DocumentRetrievalDriver;
|
|
return model_rd;
|
|
}
|
|
|
|
return XmlLDrivers::Factory (aGUID);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : AddDrivers
|
|
//purpose :
|
|
//=======================================================================
|
|
void XmlTObjDrivers::AddDrivers (const Handle(XmlMDF_ADriverTable)& aDriverTable,
|
|
const Handle(CDM_MessageDriver)& anMsgDrv)
|
|
{
|
|
aDriverTable -> AddDriver (new XmlTObjDrivers_ModelDriver (anMsgDrv));
|
|
aDriverTable -> AddDriver (new XmlTObjDrivers_ObjectDriver (anMsgDrv));
|
|
aDriverTable -> AddDriver (new XmlTObjDrivers_ReferenceDriver (anMsgDrv));
|
|
aDriverTable -> AddDriver (new XmlTObjDrivers_XYZDriver (anMsgDrv));
|
|
aDriverTable -> AddDriver (new XmlTObjDrivers_IntSparseArrayDriver(anMsgDrv));
|
|
}
|
|
|
|
PLUGIN(XmlTObjDrivers)
|