mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
84 lines
3.2 KiB
C++
84 lines
3.2 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 <BinLDrivers.hxx>
|
|
#include <BinTObjDrivers.hxx>
|
|
#include <BinTObjDrivers_DocumentStorageDriver.hxx>
|
|
#include <BinTObjDrivers_DocumentRetrievalDriver.hxx>
|
|
#include <BinTObjDrivers_IntSparseArrayDriver.hxx>
|
|
#include <BinTObjDrivers_ModelDriver.hxx>
|
|
#include <BinTObjDrivers_ObjectDriver.hxx>
|
|
#include <BinTObjDrivers_ReferenceDriver.hxx>
|
|
#include <BinTObjDrivers_XYZDriver.hxx>
|
|
#include <Plugin_Macro.hxx>
|
|
#include <TDocStd_Application.hxx>
|
|
|
|
static Standard_GUID BinStorageDriver ("f78ff4a2-a779-11d5-aab4-0050044b1af1");
|
|
static Standard_GUID BinRetrievalDriver("f78ff4a3-a779-11d5-aab4-0050044b1af1");
|
|
|
|
const Handle(Standard_Transient)& BinTObjDrivers::Factory(const Standard_GUID& aGUID)
|
|
{
|
|
if(aGUID == BinStorageDriver)
|
|
{
|
|
#ifdef OCCT_DEBUG
|
|
std::cout << "BinTObjDrivers : Storage Plugin" << std::endl;
|
|
#endif
|
|
static Handle(Standard_Transient) model_sd
|
|
= new BinTObjDrivers_DocumentStorageDriver;
|
|
return model_sd;
|
|
}
|
|
|
|
if(aGUID == BinRetrievalDriver)
|
|
{
|
|
#ifdef OCCT_DEBUG
|
|
std::cout << "BinTObjDrivers : Retrieval Plugin" << std::endl;
|
|
#endif
|
|
static Handle (Standard_Transient) model_rd
|
|
= new BinTObjDrivers_DocumentRetrievalDriver;
|
|
return model_rd;
|
|
}
|
|
|
|
return BinLDrivers::Factory (aGUID);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : DefineFormat
|
|
//purpose :
|
|
//=======================================================================
|
|
void BinTObjDrivers::DefineFormat (const Handle(TDocStd_Application)& theApp)
|
|
{
|
|
theApp->DefineFormat ("TObjBin", "Binary TObj OCAF Document", "cbf",
|
|
new BinTObjDrivers_DocumentRetrievalDriver,
|
|
new BinTObjDrivers_DocumentStorageDriver);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : AddDrivers
|
|
//purpose :
|
|
//=======================================================================
|
|
void BinTObjDrivers::AddDrivers (const Handle(BinMDF_ADriverTable)& aDriverTable,
|
|
const Handle(Message_Messenger)& aMsgDrv)
|
|
{
|
|
aDriverTable -> AddDriver (new BinTObjDrivers_ModelDriver (aMsgDrv));
|
|
aDriverTable -> AddDriver (new BinTObjDrivers_ObjectDriver (aMsgDrv));
|
|
aDriverTable -> AddDriver (new BinTObjDrivers_ReferenceDriver (aMsgDrv));
|
|
aDriverTable -> AddDriver (new BinTObjDrivers_XYZDriver (aMsgDrv));
|
|
aDriverTable -> AddDriver (new BinTObjDrivers_IntSparseArrayDriver (aMsgDrv));
|
|
}
|
|
|
|
PLUGIN(BinTObjDrivers)
|