1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-26 10:19:45 +03:00
occt/src/IGESDimen/IGESDimen_GeneralModule.cxx
2012-03-05 19:23:40 +04:00

765 lines
24 KiB
C++
Executable File

#include <IGESDimen_GeneralModule.ixx>
#include <Interface_Macros.hxx>
#include <Interface_Category.hxx>
#include <IGESDimen_AngularDimension.hxx>
#include <IGESDimen_BasicDimension.hxx>
#include <IGESDimen_CenterLine.hxx>
#include <IGESDimen_CurveDimension.hxx>
#include <IGESDimen_DiameterDimension.hxx>
#include <IGESDimen_DimensionDisplayData.hxx>
#include <IGESDimen_DimensionTolerance.hxx>
#include <IGESDimen_DimensionUnits.hxx>
#include <IGESDimen_DimensionedGeometry.hxx>
#include <IGESDimen_FlagNote.hxx>
#include <IGESDimen_GeneralLabel.hxx>
#include <IGESDimen_GeneralNote.hxx>
#include <IGESDimen_GeneralSymbol.hxx>
#include <IGESDimen_LeaderArrow.hxx>
#include <IGESDimen_LinearDimension.hxx>
#include <IGESDimen_NewDimensionedGeometry.hxx>
#include <IGESDimen_NewGeneralNote.hxx>
#include <IGESDimen_OrdinateDimension.hxx>
#include <IGESDimen_PointDimension.hxx>
#include <IGESDimen_RadiusDimension.hxx>
#include <IGESDimen_Section.hxx>
#include <IGESDimen_SectionedArea.hxx>
#include <IGESDimen_WitnessLine.hxx>
#include <IGESDimen_ToolAngularDimension.hxx>
#include <IGESDimen_ToolBasicDimension.hxx>
#include <IGESDimen_ToolCenterLine.hxx>
#include <IGESDimen_ToolCurveDimension.hxx>
#include <IGESDimen_ToolDiameterDimension.hxx>
#include <IGESDimen_ToolDimensionDisplayData.hxx>
#include <IGESDimen_ToolDimensionTolerance.hxx>
#include <IGESDimen_ToolDimensionUnits.hxx>
#include <IGESDimen_ToolDimensionedGeometry.hxx>
#include <IGESDimen_ToolFlagNote.hxx>
#include <IGESDimen_ToolGeneralLabel.hxx>
#include <IGESDimen_ToolGeneralNote.hxx>
#include <IGESDimen_ToolGeneralSymbol.hxx>
#include <IGESDimen_ToolLeaderArrow.hxx>
#include <IGESDimen_ToolLinearDimension.hxx>
#include <IGESDimen_ToolNewDimensionedGeometry.hxx>
#include <IGESDimen_ToolNewGeneralNote.hxx>
#include <IGESDimen_ToolOrdinateDimension.hxx>
#include <IGESDimen_ToolPointDimension.hxx>
#include <IGESDimen_ToolRadiusDimension.hxx>
#include <IGESDimen_ToolSection.hxx>
#include <IGESDimen_ToolSectionedArea.hxx>
#include <IGESDimen_ToolWitnessLine.hxx>
// Each Module is attached to a Protocol : it must interprete Case Numbers
// (arguments <CN> of various methods) in accordance to values returned by
// the method TypeNumber from this Protocol
IGESDimen_GeneralModule::IGESDimen_GeneralModule () { }
void IGESDimen_GeneralModule::OwnSharedCase
(const Standard_Integer CN, const Handle(IGESData_IGESEntity)& ent,
Interface_EntityIterator& iter) const
{
switch (CN) {
case 1 : {
DeclareAndCast(IGESDimen_AngularDimension,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolAngularDimension tool;
tool.OwnShared(anent,iter);
}
break;
case 2 : {
DeclareAndCast(IGESDimen_BasicDimension,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolBasicDimension tool;
tool.OwnShared(anent,iter);
}
break;
case 3 : {
DeclareAndCast(IGESDimen_CenterLine,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolCenterLine tool;
tool.OwnShared(anent,iter);
}
break;
case 4 : {
DeclareAndCast(IGESDimen_CurveDimension,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolCurveDimension tool;
tool.OwnShared(anent,iter);
}
break;
case 5 : {
DeclareAndCast(IGESDimen_DiameterDimension,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolDiameterDimension tool;
tool.OwnShared(anent,iter);
}
break;
case 6 : {
DeclareAndCast(IGESDimen_DimensionDisplayData,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolDimensionDisplayData tool;
tool.OwnShared(anent,iter);
}
break;
case 7 : {
DeclareAndCast(IGESDimen_DimensionTolerance,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolDimensionTolerance tool;
tool.OwnShared(anent,iter);
}
break;
case 8 : {
DeclareAndCast(IGESDimen_DimensionUnits,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolDimensionUnits tool;
tool.OwnShared(anent,iter);
}
break;
case 9 : {
DeclareAndCast(IGESDimen_DimensionedGeometry,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolDimensionedGeometry tool;
tool.OwnShared(anent,iter);
}
break;
case 10 : {
DeclareAndCast(IGESDimen_FlagNote,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolFlagNote tool;
tool.OwnShared(anent,iter);
}
break;
case 11 : {
DeclareAndCast(IGESDimen_GeneralLabel,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolGeneralLabel tool;
tool.OwnShared(anent,iter);
}
break;
case 12 : {
DeclareAndCast(IGESDimen_GeneralNote,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolGeneralNote tool;
tool.OwnShared(anent,iter);
}
break;
case 13 : {
DeclareAndCast(IGESDimen_GeneralSymbol,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolGeneralSymbol tool;
tool.OwnShared(anent,iter);
}
break;
case 14 : {
DeclareAndCast(IGESDimen_LeaderArrow,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolLeaderArrow tool;
tool.OwnShared(anent,iter);
}
break;
case 15 : {
DeclareAndCast(IGESDimen_LinearDimension,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolLinearDimension tool;
tool.OwnShared(anent,iter);
}
break;
case 16 : {
DeclareAndCast(IGESDimen_NewDimensionedGeometry,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolNewDimensionedGeometry tool;
tool.OwnShared(anent,iter);
}
break;
case 17 : {
DeclareAndCast(IGESDimen_NewGeneralNote,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolNewGeneralNote tool;
tool.OwnShared(anent,iter);
}
break;
case 18 : {
DeclareAndCast(IGESDimen_OrdinateDimension,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolOrdinateDimension tool;
tool.OwnShared(anent,iter);
}
break;
case 19 : {
DeclareAndCast(IGESDimen_PointDimension,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolPointDimension tool;
tool.OwnShared(anent,iter);
}
break;
case 20 : {
DeclareAndCast(IGESDimen_RadiusDimension,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolRadiusDimension tool;
tool.OwnShared(anent,iter);
}
break;
case 21 : {
DeclareAndCast(IGESDimen_Section,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolSection tool;
tool.OwnShared(anent,iter);
}
break;
case 22 : {
DeclareAndCast(IGESDimen_SectionedArea,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolSectionedArea tool;
tool.OwnShared(anent,iter);
}
break;
case 23 : {
DeclareAndCast(IGESDimen_WitnessLine,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolWitnessLine tool;
tool.OwnShared(anent,iter);
}
break;
default : break;
}
}
IGESData_DirChecker IGESDimen_GeneralModule::DirChecker
(const Standard_Integer CN, const Handle(IGESData_IGESEntity)& ent) const
{
switch (CN) {
case 1 : {
DeclareAndCast(IGESDimen_AngularDimension,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolAngularDimension tool;
return tool.DirChecker(anent);
}
case 2 : {
DeclareAndCast(IGESDimen_BasicDimension,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolBasicDimension tool;
return tool.DirChecker(anent);
}
case 3 : {
DeclareAndCast(IGESDimen_CenterLine,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolCenterLine tool;
return tool.DirChecker(anent);
}
case 4 : {
DeclareAndCast(IGESDimen_CurveDimension,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolCurveDimension tool;
return tool.DirChecker(anent);
}
case 5 : {
DeclareAndCast(IGESDimen_DiameterDimension,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolDiameterDimension tool;
return tool.DirChecker(anent);
}
case 6 : {
DeclareAndCast(IGESDimen_DimensionDisplayData,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolDimensionDisplayData tool;
return tool.DirChecker(anent);
}
case 7 : {
DeclareAndCast(IGESDimen_DimensionTolerance,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolDimensionTolerance tool;
return tool.DirChecker(anent);
}
case 8 : {
DeclareAndCast(IGESDimen_DimensionUnits,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolDimensionUnits tool;
return tool.DirChecker(anent);
}
case 9 : {
DeclareAndCast(IGESDimen_DimensionedGeometry,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolDimensionedGeometry tool;
return tool.DirChecker(anent);
}
case 10 : {
DeclareAndCast(IGESDimen_FlagNote,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolFlagNote tool;
return tool.DirChecker(anent);
}
case 11 : {
DeclareAndCast(IGESDimen_GeneralLabel,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolGeneralLabel tool;
return tool.DirChecker(anent);
}
case 12 : {
DeclareAndCast(IGESDimen_GeneralNote,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolGeneralNote tool;
return tool.DirChecker(anent);
}
case 13 : {
DeclareAndCast(IGESDimen_GeneralSymbol,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolGeneralSymbol tool;
return tool.DirChecker(anent);
}
case 14 : {
DeclareAndCast(IGESDimen_LeaderArrow,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolLeaderArrow tool;
return tool.DirChecker(anent);
}
case 15 : {
DeclareAndCast(IGESDimen_LinearDimension,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolLinearDimension tool;
return tool.DirChecker(anent);
}
case 16 : {
DeclareAndCast(IGESDimen_NewDimensionedGeometry,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolNewDimensionedGeometry tool;
return tool.DirChecker(anent);
}
case 17 : {
DeclareAndCast(IGESDimen_NewGeneralNote,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolNewGeneralNote tool;
return tool.DirChecker(anent);
}
case 18 : {
DeclareAndCast(IGESDimen_OrdinateDimension,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolOrdinateDimension tool;
return tool.DirChecker(anent);
}
case 19 : {
DeclareAndCast(IGESDimen_PointDimension,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolPointDimension tool;
return tool.DirChecker(anent);
}
case 20 : {
DeclareAndCast(IGESDimen_RadiusDimension,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolRadiusDimension tool;
return tool.DirChecker(anent);
}
case 21 : {
DeclareAndCast(IGESDimen_Section,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolSection tool;
return tool.DirChecker(anent);
}
case 22 : {
DeclareAndCast(IGESDimen_SectionedArea,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolSectionedArea tool;
return tool.DirChecker(anent);
}
case 23 : {
DeclareAndCast(IGESDimen_WitnessLine,anent,ent);
if (anent.IsNull()) break;
IGESDimen_ToolWitnessLine tool;
return tool.DirChecker(anent);
}
default : break;
}
return IGESData_DirChecker(); // by default, no specific criterium
}
void IGESDimen_GeneralModule::OwnCheckCase
(const Standard_Integer CN, const Handle(IGESData_IGESEntity)& ent,
const Interface_ShareTool& shares, Handle(Interface_Check)& ach) const
{
switch (CN) {
case 1 : {
DeclareAndCast(IGESDimen_AngularDimension,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolAngularDimension tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 2 : {
DeclareAndCast(IGESDimen_BasicDimension,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolBasicDimension tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 3 : {
DeclareAndCast(IGESDimen_CenterLine,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolCenterLine tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 4 : {
DeclareAndCast(IGESDimen_CurveDimension,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolCurveDimension tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 5 : {
DeclareAndCast(IGESDimen_DiameterDimension,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolDiameterDimension tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 6 : {
DeclareAndCast(IGESDimen_DimensionDisplayData,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolDimensionDisplayData tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 7 : {
DeclareAndCast(IGESDimen_DimensionTolerance,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolDimensionTolerance tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 8 : {
DeclareAndCast(IGESDimen_DimensionUnits,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolDimensionUnits tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 9 : {
DeclareAndCast(IGESDimen_DimensionedGeometry,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolDimensionedGeometry tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 10 : {
DeclareAndCast(IGESDimen_FlagNote,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolFlagNote tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 11 : {
DeclareAndCast(IGESDimen_GeneralLabel,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolGeneralLabel tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 12 : {
DeclareAndCast(IGESDimen_GeneralNote,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolGeneralNote tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 13 : {
DeclareAndCast(IGESDimen_GeneralSymbol,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolGeneralSymbol tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 14 : {
DeclareAndCast(IGESDimen_LeaderArrow,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolLeaderArrow tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 15 : {
DeclareAndCast(IGESDimen_LinearDimension,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolLinearDimension tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 16 : {
DeclareAndCast(IGESDimen_NewDimensionedGeometry,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolNewDimensionedGeometry tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 17 : {
DeclareAndCast(IGESDimen_NewGeneralNote,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolNewGeneralNote tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 18 : {
DeclareAndCast(IGESDimen_OrdinateDimension,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolOrdinateDimension tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 19 : {
DeclareAndCast(IGESDimen_PointDimension,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolPointDimension tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 20 : {
DeclareAndCast(IGESDimen_RadiusDimension,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolRadiusDimension tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 21 : {
DeclareAndCast(IGESDimen_Section,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolSection tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 22 : {
DeclareAndCast(IGESDimen_SectionedArea,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolSectionedArea tool;
tool.OwnCheck(anent,shares,ach);
}
break;
case 23 : {
DeclareAndCast(IGESDimen_WitnessLine,anent,ent);
if (anent.IsNull()) return;
IGESDimen_ToolWitnessLine tool;
tool.OwnCheck(anent,shares,ach);
}
break;
default : break;
}
}
Standard_Boolean IGESDimen_GeneralModule::NewVoid
(const Standard_Integer CN, Handle(Standard_Transient)& ent) const
{
switch (CN) {
case 1 : ent = new IGESDimen_AngularDimension; break;
case 2 : ent = new IGESDimen_BasicDimension; break;
case 3 : ent = new IGESDimen_CenterLine; break;
case 4 : ent = new IGESDimen_CurveDimension; break;
case 5 : ent = new IGESDimen_DiameterDimension; break;
case 6 : ent = new IGESDimen_DimensionDisplayData; break;
case 7 : ent = new IGESDimen_DimensionTolerance; break;
case 8 : ent = new IGESDimen_DimensionUnits; break;
case 9 : ent = new IGESDimen_DimensionedGeometry; break;
case 10 : ent = new IGESDimen_FlagNote; break;
case 11 : ent = new IGESDimen_GeneralLabel; break;
case 12 : ent = new IGESDimen_GeneralNote; break;
case 13 : ent = new IGESDimen_GeneralSymbol; break;
case 14 : ent = new IGESDimen_LeaderArrow; break;
case 15 : ent = new IGESDimen_LinearDimension; break;
case 16 : ent = new IGESDimen_NewDimensionedGeometry; break;
case 17 : ent = new IGESDimen_NewGeneralNote; break;
case 18 : ent = new IGESDimen_OrdinateDimension; break;
case 19 : ent = new IGESDimen_PointDimension; break;
case 20 : ent = new IGESDimen_RadiusDimension; break;
case 21 : ent = new IGESDimen_Section; break;
case 22 : ent = new IGESDimen_SectionedArea; break;
case 23 : ent = new IGESDimen_WitnessLine; break;
default : return Standard_False; // by default, Failure on Recognize
}
return Standard_True;
}
void IGESDimen_GeneralModule::OwnCopyCase
(const Standard_Integer CN,
const Handle(IGESData_IGESEntity)& entfrom,
const Handle(IGESData_IGESEntity)& entto,
Interface_CopyTool& TC) const
{
switch (CN) {
case 1 : {
DeclareAndCast(IGESDimen_AngularDimension,enfr,entfrom);
DeclareAndCast(IGESDimen_AngularDimension,ento,entto);
IGESDimen_ToolAngularDimension tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 2 : {
DeclareAndCast(IGESDimen_BasicDimension,enfr,entfrom);
DeclareAndCast(IGESDimen_BasicDimension,ento,entto);
IGESDimen_ToolBasicDimension tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 3 : {
DeclareAndCast(IGESDimen_CenterLine,enfr,entfrom);
DeclareAndCast(IGESDimen_CenterLine,ento,entto);
IGESDimen_ToolCenterLine tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 4 : {
DeclareAndCast(IGESDimen_CurveDimension,enfr,entfrom);
DeclareAndCast(IGESDimen_CurveDimension,ento,entto);
IGESDimen_ToolCurveDimension tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 5 : {
DeclareAndCast(IGESDimen_DiameterDimension,enfr,entfrom);
DeclareAndCast(IGESDimen_DiameterDimension,ento,entto);
IGESDimen_ToolDiameterDimension tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 6 : {
DeclareAndCast(IGESDimen_DimensionDisplayData,enfr,entfrom);
DeclareAndCast(IGESDimen_DimensionDisplayData,ento,entto);
IGESDimen_ToolDimensionDisplayData tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 7 : {
DeclareAndCast(IGESDimen_DimensionTolerance,enfr,entfrom);
DeclareAndCast(IGESDimen_DimensionTolerance,ento,entto);
IGESDimen_ToolDimensionTolerance tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 8 : {
DeclareAndCast(IGESDimen_DimensionUnits,enfr,entfrom);
DeclareAndCast(IGESDimen_DimensionUnits,ento,entto);
IGESDimen_ToolDimensionUnits tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 9 : {
DeclareAndCast(IGESDimen_DimensionedGeometry,enfr,entfrom);
DeclareAndCast(IGESDimen_DimensionedGeometry,ento,entto);
IGESDimen_ToolDimensionedGeometry tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 10 : {
DeclareAndCast(IGESDimen_FlagNote,enfr,entfrom);
DeclareAndCast(IGESDimen_FlagNote,ento,entto);
IGESDimen_ToolFlagNote tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 11 : {
DeclareAndCast(IGESDimen_GeneralLabel,enfr,entfrom);
DeclareAndCast(IGESDimen_GeneralLabel,ento,entto);
IGESDimen_ToolGeneralLabel tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 12 : {
DeclareAndCast(IGESDimen_GeneralNote,enfr,entfrom);
DeclareAndCast(IGESDimen_GeneralNote,ento,entto);
IGESDimen_ToolGeneralNote tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 13 : {
DeclareAndCast(IGESDimen_GeneralSymbol,enfr,entfrom);
DeclareAndCast(IGESDimen_GeneralSymbol,ento,entto);
IGESDimen_ToolGeneralSymbol tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 14 : {
DeclareAndCast(IGESDimen_LeaderArrow,enfr,entfrom);
DeclareAndCast(IGESDimen_LeaderArrow,ento,entto);
IGESDimen_ToolLeaderArrow tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 15 : {
DeclareAndCast(IGESDimen_LinearDimension,enfr,entfrom);
DeclareAndCast(IGESDimen_LinearDimension,ento,entto);
IGESDimen_ToolLinearDimension tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 16 : {
DeclareAndCast(IGESDimen_NewDimensionedGeometry,enfr,entfrom);
DeclareAndCast(IGESDimen_NewDimensionedGeometry,ento,entto);
IGESDimen_ToolNewDimensionedGeometry tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 17 : {
DeclareAndCast(IGESDimen_NewGeneralNote,enfr,entfrom);
DeclareAndCast(IGESDimen_NewGeneralNote,ento,entto);
IGESDimen_ToolNewGeneralNote tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 18 : {
DeclareAndCast(IGESDimen_OrdinateDimension,enfr,entfrom);
DeclareAndCast(IGESDimen_OrdinateDimension,ento,entto);
IGESDimen_ToolOrdinateDimension tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 19 : {
DeclareAndCast(IGESDimen_PointDimension,enfr,entfrom);
DeclareAndCast(IGESDimen_PointDimension,ento,entto);
IGESDimen_ToolPointDimension tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 20 : {
DeclareAndCast(IGESDimen_RadiusDimension,enfr,entfrom);
DeclareAndCast(IGESDimen_RadiusDimension,ento,entto);
IGESDimen_ToolRadiusDimension tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 21 : {
DeclareAndCast(IGESDimen_Section,enfr,entfrom);
DeclareAndCast(IGESDimen_Section,ento,entto);
IGESDimen_ToolSection tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 22 : {
DeclareAndCast(IGESDimen_SectionedArea,enfr,entfrom);
DeclareAndCast(IGESDimen_SectionedArea,ento,entto);
IGESDimen_ToolSectionedArea tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
case 23 : {
DeclareAndCast(IGESDimen_WitnessLine,enfr,entfrom);
DeclareAndCast(IGESDimen_WitnessLine,ento,entto);
IGESDimen_ToolWitnessLine tool;
tool.OwnCopy(enfr,ento,TC);
}
break;
default : break;
}
}
Standard_Integer IGESDimen_GeneralModule::CategoryNumber
(const Standard_Integer CN, const Handle(Standard_Transient)& ,
const Interface_ShareTool& ) const
{
return Interface_Category::Number("Drawing");
}