mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-06 18:26:22 +03:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
98 lines
4.9 KiB
C++
98 lines
4.9 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.ixx>
|
|
#include <BinMDataStd_IntegerDriver.hxx>
|
|
#include <BinMDataStd_RealDriver.hxx>
|
|
#include <BinMDataStd_IntegerArrayDriver.hxx>
|
|
#include <BinMDataStd_RealArrayDriver.hxx>
|
|
#include <BinMDataStd_NameDriver.hxx>
|
|
#include <BinMDataStd_CommentDriver.hxx>
|
|
#include <BinMDataStd_ExpressionDriver.hxx>
|
|
#include <BinMDataStd_RelationDriver.hxx>
|
|
#include <BinMDataStd_TreeNodeDriver.hxx>
|
|
#include <BinMDataStd_UAttributeDriver.hxx>
|
|
#include <BinMDataStd_VariableDriver.hxx>
|
|
#include <BinMDataStd_DirectoryDriver.hxx>
|
|
#include <BinMDataStd_NoteBookDriver.hxx>
|
|
#include <BinMDataStd_ExtStringArrayDriver.hxx>
|
|
#include <BinMDataStd_TickDriver.hxx>
|
|
#include <BinMDataStd_IntegerListDriver.hxx>
|
|
#include <BinMDataStd_RealListDriver.hxx>
|
|
#include <BinMDataStd_ExtStringListDriver.hxx>
|
|
#include <BinMDataStd_BooleanListDriver.hxx>
|
|
#include <BinMDataStd_ReferenceListDriver.hxx>
|
|
#include <BinMDataStd_BooleanArrayDriver.hxx>
|
|
#include <BinMDataStd_ReferenceArrayDriver.hxx>
|
|
#include <BinMDataStd_ByteArrayDriver.hxx>
|
|
#include <BinMDataStd_NamedDataDriver.hxx>
|
|
#include <BinMDataStd_AsciiStringDriver.hxx>
|
|
#include <BinMDataStd_IntPackedMapDriver.hxx>
|
|
|
|
static Standard_Integer myDocumentVersion = -1;
|
|
//=======================================================================
|
|
//function : AddDrivers
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void BinMDataStd::AddDrivers (const Handle(BinMDF_ADriverTable)& theDriverTable,
|
|
const Handle(CDM_MessageDriver)& 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) );
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetDocumentVersion
|
|
//purpose : Sets current document version
|
|
//=======================================================================
|
|
void BinMDataStd::SetDocumentVersion(const Standard_Integer theVersion)
|
|
{
|
|
myDocumentVersion = theVersion;
|
|
}
|
|
//=======================================================================
|
|
//function : DocumentVersion
|
|
//purpose : Retrieved document version
|
|
//=======================================================================
|
|
Standard_Integer BinMDataStd::DocumentVersion()
|
|
{
|
|
return myDocumentVersion;
|
|
}
|