mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-01 10:26:12 +03:00
83 lines
4.3 KiB
C++
83 lines
4.3 KiB
C++
// Created on: 2002-10-30
|
|
// Created by: Michael SAZONOV
|
|
// Copyright (c) 2002-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.
|
|
|
|
|
|
#include <BinMDataStd.hxx>
|
|
#include <BinMDataStd_AsciiStringDriver.hxx>
|
|
#include <BinMDataStd_BooleanArrayDriver.hxx>
|
|
#include <BinMDataStd_BooleanListDriver.hxx>
|
|
#include <BinMDataStd_ByteArrayDriver.hxx>
|
|
#include <BinMDataStd_CommentDriver.hxx>
|
|
#include <BinMDataStd_DirectoryDriver.hxx>
|
|
#include <BinMDataStd_ExpressionDriver.hxx>
|
|
#include <BinMDataStd_ExtStringArrayDriver.hxx>
|
|
#include <BinMDataStd_ExtStringListDriver.hxx>
|
|
#include <BinMDataStd_IntegerArrayDriver.hxx>
|
|
#include <BinMDataStd_IntegerDriver.hxx>
|
|
#include <BinMDataStd_IntegerListDriver.hxx>
|
|
#include <BinMDataStd_IntPackedMapDriver.hxx>
|
|
#include <BinMDataStd_NamedDataDriver.hxx>
|
|
#include <BinMDataStd_NameDriver.hxx>
|
|
#include <BinMDataStd_NoteBookDriver.hxx>
|
|
#include <BinMDataStd_RealArrayDriver.hxx>
|
|
#include <BinMDataStd_RealDriver.hxx>
|
|
#include <BinMDataStd_RealListDriver.hxx>
|
|
#include <BinMDataStd_ReferenceArrayDriver.hxx>
|
|
#include <BinMDataStd_ReferenceListDriver.hxx>
|
|
#include <BinMDataStd_RelationDriver.hxx>
|
|
#include <BinMDataStd_TickDriver.hxx>
|
|
#include <BinMDataStd_TreeNodeDriver.hxx>
|
|
#include <BinMDataStd_UAttributeDriver.hxx>
|
|
#include <BinMDataStd_VariableDriver.hxx>
|
|
#include <BinMDF_ADriverTable.hxx>
|
|
#include <Message_Messenger.hxx>
|
|
|
|
//=======================================================================
|
|
//function : AddDrivers
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void BinMDataStd::AddDrivers (const Handle(BinMDF_ADriverTable)& theDriverTable,
|
|
const Handle(Message_Messenger)& theMsgDriver)
|
|
{
|
|
theDriverTable->AddDriver (new BinMDataStd_CommentDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_ExpressionDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_IntegerArrayDriver(theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_IntegerDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_NameDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_RealArrayDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_RealDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_RelationDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_TreeNodeDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_UAttributeDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_VariableDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_DirectoryDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_NoteBookDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_ExtStringArrayDriver(theMsgDriver) );
|
|
|
|
theDriverTable->AddDriver (new BinMDataStd_TickDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_IntegerListDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_RealListDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_ExtStringListDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_BooleanListDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_ReferenceListDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_BooleanArrayDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_ReferenceArrayDriver(theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_ByteArrayDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_NamedDataDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_AsciiStringDriver (theMsgDriver) );
|
|
theDriverTable->AddDriver (new BinMDataStd_IntPackedMapDriver (theMsgDriver) );
|
|
}
|