mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-07 18:30:55 +03:00
251 lines
7.9 KiB
C++
251 lines
7.9 KiB
C++
// Copyright (c) 1999-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 <IGESData_IGESDumper.hxx>
|
|
#include <IGESSolid_Block.hxx>
|
|
#include <IGESSolid_BooleanTree.hxx>
|
|
#include <IGESSolid_ConeFrustum.hxx>
|
|
#include <IGESSolid_ConicalSurface.hxx>
|
|
#include <IGESSolid_Cylinder.hxx>
|
|
#include <IGESSolid_CylindricalSurface.hxx>
|
|
#include <IGESSolid_EdgeList.hxx>
|
|
#include <IGESSolid_Ellipsoid.hxx>
|
|
#include <IGESSolid_ManifoldSolid.hxx>
|
|
#include <IGESSolid_PlaneSurface.hxx>
|
|
#include <IGESSolid_RightAngularWedge.hxx>
|
|
#include <IGESSolid_SelectedComponent.hxx>
|
|
#include <IGESSolid_Shell.hxx>
|
|
#include <IGESSolid_SolidAssembly.hxx>
|
|
#include <IGESSolid_SolidInstance.hxx>
|
|
#include <IGESSolid_SolidOfLinearExtrusion.hxx>
|
|
#include <IGESSolid_SolidOfRevolution.hxx>
|
|
#include <IGESSolid_SpecificModule.hxx>
|
|
#include <IGESSolid_Sphere.hxx>
|
|
#include <IGESSolid_SphericalSurface.hxx>
|
|
#include <IGESSolid_ToolBlock.hxx>
|
|
#include <IGESSolid_ToolBooleanTree.hxx>
|
|
#include <IGESSolid_ToolConeFrustum.hxx>
|
|
#include <IGESSolid_ToolConicalSurface.hxx>
|
|
#include <IGESSolid_ToolCylinder.hxx>
|
|
#include <IGESSolid_ToolCylindricalSurface.hxx>
|
|
#include <IGESSolid_ToolEdgeList.hxx>
|
|
#include <IGESSolid_ToolEllipsoid.hxx>
|
|
#include <IGESSolid_ToolFace.hxx>
|
|
#include <IGESSolid_ToolLoop.hxx>
|
|
#include <IGESSolid_ToolManifoldSolid.hxx>
|
|
#include <IGESSolid_ToolPlaneSurface.hxx>
|
|
#include <IGESSolid_ToolRightAngularWedge.hxx>
|
|
#include <IGESSolid_ToolSelectedComponent.hxx>
|
|
#include <IGESSolid_ToolShell.hxx>
|
|
#include <IGESSolid_ToolSolidAssembly.hxx>
|
|
#include <IGESSolid_ToolSolidInstance.hxx>
|
|
#include <IGESSolid_ToolSolidOfLinearExtrusion.hxx>
|
|
#include <IGESSolid_ToolSolidOfRevolution.hxx>
|
|
#include <IGESSolid_ToolSphere.hxx>
|
|
#include <IGESSolid_ToolSphericalSurface.hxx>
|
|
#include <IGESSolid_ToolToroidalSurface.hxx>
|
|
#include <IGESSolid_ToolTorus.hxx>
|
|
#include <IGESSolid_ToolVertexList.hxx>
|
|
#include <IGESSolid_ToroidalSurface.hxx>
|
|
#include <IGESSolid_Torus.hxx>
|
|
#include <IGESSolid_VertexList.hxx>
|
|
#include <Interface_Macros.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(IGESSolid_SpecificModule,IGESData_SpecificModule)
|
|
|
|
// Each Module is attached to a Protocol : it must interpret Case Numbers
|
|
// (arguments <CN> of various methods) in accordance to values returned by
|
|
// the method TypeNumber from this Protocol
|
|
IGESSolid_SpecificModule::IGESSolid_SpecificModule() { }
|
|
|
|
|
|
void IGESSolid_SpecificModule::OwnDump
|
|
(const Standard_Integer CN, const Handle(IGESData_IGESEntity)& ent,
|
|
const IGESData_IGESDumper& dumper, Standard_OStream& S,
|
|
const Standard_Integer own) const
|
|
{
|
|
switch (CN) {
|
|
case 1 : {
|
|
DeclareAndCast(IGESSolid_Block,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolBlock tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 2 : {
|
|
DeclareAndCast(IGESSolid_BooleanTree,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolBooleanTree tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 3 : {
|
|
DeclareAndCast(IGESSolid_ConeFrustum,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolConeFrustum tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 4 : {
|
|
DeclareAndCast(IGESSolid_ConicalSurface,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolConicalSurface tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 5 : {
|
|
DeclareAndCast(IGESSolid_Cylinder,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolCylinder tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 6 : {
|
|
DeclareAndCast(IGESSolid_CylindricalSurface,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolCylindricalSurface tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 7 : {
|
|
DeclareAndCast(IGESSolid_EdgeList,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolEdgeList tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 8 : {
|
|
DeclareAndCast(IGESSolid_Ellipsoid,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolEllipsoid tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 9 : {
|
|
DeclareAndCast(IGESSolid_Face,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolFace tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 10 : {
|
|
DeclareAndCast(IGESSolid_Loop,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolLoop tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 11 : {
|
|
DeclareAndCast(IGESSolid_ManifoldSolid,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolManifoldSolid tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 12 : {
|
|
DeclareAndCast(IGESSolid_PlaneSurface,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolPlaneSurface tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 13 : {
|
|
DeclareAndCast(IGESSolid_RightAngularWedge,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolRightAngularWedge tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 14 : {
|
|
DeclareAndCast(IGESSolid_SelectedComponent,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolSelectedComponent tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 15 : {
|
|
DeclareAndCast(IGESSolid_Shell,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolShell tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 16 : {
|
|
DeclareAndCast(IGESSolid_SolidAssembly,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolSolidAssembly tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 17 : {
|
|
DeclareAndCast(IGESSolid_SolidInstance,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolSolidInstance tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 18 : {
|
|
DeclareAndCast(IGESSolid_SolidOfLinearExtrusion,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolSolidOfLinearExtrusion tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 19 : {
|
|
DeclareAndCast(IGESSolid_SolidOfRevolution,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolSolidOfRevolution tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 20 : {
|
|
DeclareAndCast(IGESSolid_Sphere,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolSphere tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 21 : {
|
|
DeclareAndCast(IGESSolid_SphericalSurface,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolSphericalSurface tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 22 : {
|
|
DeclareAndCast(IGESSolid_ToroidalSurface,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolToroidalSurface tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 23 : {
|
|
DeclareAndCast(IGESSolid_Torus,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolTorus tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 24 : {
|
|
DeclareAndCast(IGESSolid_VertexList,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESSolid_ToolVertexList tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
default : break;
|
|
}
|
|
}
|