1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
// File: MXCAFDoc_ShapeToolStorageDriver.cxx
// Created: Tue Aug 15 15:32:19 2000
// Author: data exchange team
// <det@strelox.nnov.matra-dtv.fr>
#include <MDF_SRelocationTable.hxx>
#include <MXCAFDoc_ShapeToolStorageDriver.ixx>
#include <MgtTopLoc.hxx>
#include <PTColStd_TransientPersistentMap.hxx>
#include <PXCAFDoc_ShapeTool.hxx>
#include <XCAFDoc_ShapeTool.hxx>
//=======================================================================
//function : Constructor
//purpose :
//=======================================================================
MXCAFDoc_ShapeToolStorageDriver::MXCAFDoc_ShapeToolStorageDriver(const Handle(CDM_MessageDriver)& theMsgDriver) : MDF_ASDriver (theMsgDriver)
{
}
//=======================================================================
//function : VersionNumber
//purpose :
//=======================================================================
Standard_Integer MXCAFDoc_ShapeToolStorageDriver::VersionNumber() const
{ return 0; }
//=======================================================================
//function : SourceType
//purpose :
//=======================================================================
Handle(Standard_Type) MXCAFDoc_ShapeToolStorageDriver::SourceType() const
{
static Handle(Standard_Type) sourceType = STANDARD_TYPE(XCAFDoc_ShapeTool);
return sourceType;
}
//=======================================================================
//function : NewEmpty
//purpose :
//=======================================================================
Handle(PDF_Attribute) MXCAFDoc_ShapeToolStorageDriver::NewEmpty() const
{
return new PXCAFDoc_ShapeTool();
}
//=======================================================================
//function : Paste
//purpose :
//=======================================================================
void MXCAFDoc_ShapeToolStorageDriver::Paste (const Handle(TDF_Attribute)& /* Source */,
const Handle(PDF_Attribute)& /* Target */,
const Handle(MDF_SRelocationTable)& /*RelocTable*/) const
{
}