mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-22 20:59:38 +08:00
Update empty method guards to new style with regex (see PR). Used clang-format 18.1.8. New actions to validate code formatting is added. Update .clang-format with disabling of include sorting. It is temporary changes, then include will be sorted. Apply formatting for /src and /tools folder. The files with .hxx,.cxx,.lxx,.h,.pxx,.hpp,*.cpp extensions.
267 lines
8.1 KiB
C++
267 lines
8.1 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 <IGESBasic_AssocGroupType.hxx>
|
|
#include <IGESBasic_ExternalReferenceFile.hxx>
|
|
#include <IGESBasic_ExternalRefFile.hxx>
|
|
#include <IGESBasic_ExternalRefFileIndex.hxx>
|
|
#include <IGESBasic_ExternalRefFileName.hxx>
|
|
#include <IGESBasic_ExternalRefLibName.hxx>
|
|
#include <IGESBasic_ExternalRefName.hxx>
|
|
#include <IGESBasic_GroupWithoutBackP.hxx>
|
|
#include <IGESBasic_Hierarchy.hxx>
|
|
#include <IGESBasic_Name.hxx>
|
|
#include <IGESBasic_OrderedGroup.hxx>
|
|
#include <IGESBasic_OrderedGroupWithoutBackP.hxx>
|
|
#include <IGESBasic_SingleParent.hxx>
|
|
#include <IGESBasic_SingularSubfigure.hxx>
|
|
#include <IGESBasic_SpecificModule.hxx>
|
|
#include <IGESBasic_SubfigureDef.hxx>
|
|
#include <IGESBasic_ToolAssocGroupType.hxx>
|
|
#include <IGESBasic_ToolExternalReferenceFile.hxx>
|
|
#include <IGESBasic_ToolExternalRefFile.hxx>
|
|
#include <IGESBasic_ToolExternalRefFileIndex.hxx>
|
|
#include <IGESBasic_ToolExternalRefFileName.hxx>
|
|
#include <IGESBasic_ToolExternalRefLibName.hxx>
|
|
#include <IGESBasic_ToolExternalRefName.hxx>
|
|
#include <IGESBasic_ToolGroup.hxx>
|
|
#include <IGESBasic_ToolGroupWithoutBackP.hxx>
|
|
#include <IGESBasic_ToolHierarchy.hxx>
|
|
#include <IGESBasic_ToolName.hxx>
|
|
#include <IGESBasic_ToolOrderedGroup.hxx>
|
|
#include <IGESBasic_ToolOrderedGroupWithoutBackP.hxx>
|
|
#include <IGESBasic_ToolSingleParent.hxx>
|
|
#include <IGESBasic_ToolSingularSubfigure.hxx>
|
|
#include <IGESBasic_ToolSubfigureDef.hxx>
|
|
#include <IGESData_IGESDumper.hxx>
|
|
#include <IGESData_IGESEntity.hxx>
|
|
#include <Interface_Macros.hxx>
|
|
#include <Message_Messenger.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(IGESBasic_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
|
|
IGESBasic_SpecificModule::IGESBasic_SpecificModule() {}
|
|
|
|
void IGESBasic_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(IGESBasic_AssocGroupType, anent, ent);
|
|
if (anent.IsNull())
|
|
return;
|
|
IGESBasic_ToolAssocGroupType tool;
|
|
tool.OwnDump(anent, dumper, S, own);
|
|
}
|
|
break;
|
|
case 2: {
|
|
DeclareAndCast(IGESBasic_ExternalRefFile, anent, ent);
|
|
if (anent.IsNull())
|
|
return;
|
|
IGESBasic_ToolExternalRefFile tool;
|
|
tool.OwnDump(anent, dumper, S, own);
|
|
}
|
|
break;
|
|
case 3: {
|
|
DeclareAndCast(IGESBasic_ExternalRefFileIndex, anent, ent);
|
|
if (anent.IsNull())
|
|
return;
|
|
IGESBasic_ToolExternalRefFileIndex tool;
|
|
tool.OwnDump(anent, dumper, S, own);
|
|
}
|
|
break;
|
|
case 4: {
|
|
DeclareAndCast(IGESBasic_ExternalRefFileName, anent, ent);
|
|
if (anent.IsNull())
|
|
return;
|
|
IGESBasic_ToolExternalRefFileName tool;
|
|
tool.OwnDump(anent, dumper, S, own);
|
|
}
|
|
break;
|
|
case 5: {
|
|
DeclareAndCast(IGESBasic_ExternalRefLibName, anent, ent);
|
|
if (anent.IsNull())
|
|
return;
|
|
IGESBasic_ToolExternalRefLibName tool;
|
|
tool.OwnDump(anent, dumper, S, own);
|
|
}
|
|
break;
|
|
case 6: {
|
|
DeclareAndCast(IGESBasic_ExternalRefName, anent, ent);
|
|
if (anent.IsNull())
|
|
return;
|
|
IGESBasic_ToolExternalRefName tool;
|
|
tool.OwnDump(anent, dumper, S, own);
|
|
}
|
|
break;
|
|
case 7: {
|
|
DeclareAndCast(IGESBasic_ExternalReferenceFile, anent, ent);
|
|
if (anent.IsNull())
|
|
return;
|
|
IGESBasic_ToolExternalReferenceFile tool;
|
|
tool.OwnDump(anent, dumper, S, own);
|
|
}
|
|
break;
|
|
case 8: {
|
|
DeclareAndCast(IGESBasic_Group, anent, ent);
|
|
if (anent.IsNull())
|
|
return;
|
|
IGESBasic_ToolGroup tool;
|
|
tool.OwnDump(anent, dumper, S, own);
|
|
}
|
|
break;
|
|
case 9: {
|
|
DeclareAndCast(IGESBasic_GroupWithoutBackP, anent, ent);
|
|
if (anent.IsNull())
|
|
return;
|
|
IGESBasic_ToolGroupWithoutBackP tool;
|
|
tool.OwnDump(anent, dumper, S, own);
|
|
}
|
|
break;
|
|
case 10: {
|
|
DeclareAndCast(IGESBasic_Hierarchy, anent, ent);
|
|
if (anent.IsNull())
|
|
return;
|
|
IGESBasic_ToolHierarchy tool;
|
|
tool.OwnDump(anent, dumper, S, own);
|
|
}
|
|
break;
|
|
case 11: {
|
|
DeclareAndCast(IGESBasic_Name, anent, ent);
|
|
if (anent.IsNull())
|
|
return;
|
|
IGESBasic_ToolName tool;
|
|
tool.OwnDump(anent, dumper, S, own);
|
|
}
|
|
break;
|
|
case 12: {
|
|
DeclareAndCast(IGESBasic_OrderedGroup, anent, ent);
|
|
if (anent.IsNull())
|
|
return;
|
|
IGESBasic_ToolOrderedGroup tool;
|
|
tool.OwnDump(anent, dumper, S, own);
|
|
}
|
|
break;
|
|
case 13: {
|
|
DeclareAndCast(IGESBasic_OrderedGroupWithoutBackP, anent, ent);
|
|
if (anent.IsNull())
|
|
return;
|
|
IGESBasic_ToolOrderedGroupWithoutBackP tool;
|
|
tool.OwnDump(anent, dumper, S, own);
|
|
}
|
|
break;
|
|
case 14: {
|
|
DeclareAndCast(IGESBasic_SingleParent, anent, ent);
|
|
if (anent.IsNull())
|
|
return;
|
|
IGESBasic_ToolSingleParent tool;
|
|
tool.OwnDump(anent, dumper, S, own);
|
|
}
|
|
break;
|
|
case 15: {
|
|
DeclareAndCast(IGESBasic_SingularSubfigure, anent, ent);
|
|
if (anent.IsNull())
|
|
return;
|
|
IGESBasic_ToolSingularSubfigure tool;
|
|
tool.OwnDump(anent, dumper, S, own);
|
|
}
|
|
break;
|
|
case 16: {
|
|
DeclareAndCast(IGESBasic_SubfigureDef, anent, ent);
|
|
if (anent.IsNull())
|
|
return;
|
|
IGESBasic_ToolSubfigureDef tool;
|
|
tool.OwnDump(anent, dumper, S, own);
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
Standard_Boolean IGESBasic_SpecificModule::OwnCorrect(const Standard_Integer CN,
|
|
const Handle(IGESData_IGESEntity)& ent) const
|
|
{
|
|
// Applies only on some types
|
|
switch (CN)
|
|
{
|
|
case 1: {
|
|
DeclareAndCast(IGESBasic_AssocGroupType, anent, ent);
|
|
if (anent.IsNull())
|
|
break;
|
|
IGESBasic_ToolAssocGroupType tool;
|
|
return tool.OwnCorrect(anent);
|
|
}
|
|
case 8: {
|
|
DeclareAndCast(IGESBasic_Group, anent, ent);
|
|
if (anent.IsNull())
|
|
break;
|
|
IGESBasic_ToolGroup tool;
|
|
return tool.OwnCorrect(anent);
|
|
}
|
|
case 9: {
|
|
DeclareAndCast(IGESBasic_GroupWithoutBackP, anent, ent);
|
|
if (anent.IsNull())
|
|
break;
|
|
IGESBasic_ToolGroupWithoutBackP tool;
|
|
return tool.OwnCorrect(anent);
|
|
}
|
|
case 10: {
|
|
DeclareAndCast(IGESBasic_Hierarchy, anent, ent);
|
|
if (anent.IsNull())
|
|
break;
|
|
IGESBasic_ToolHierarchy tool;
|
|
return tool.OwnCorrect(anent);
|
|
}
|
|
case 11: {
|
|
DeclareAndCast(IGESBasic_Name, anent, ent);
|
|
if (anent.IsNull())
|
|
break;
|
|
IGESBasic_ToolName tool;
|
|
return tool.OwnCorrect(anent);
|
|
}
|
|
case 12: {
|
|
DeclareAndCast(IGESBasic_OrderedGroup, anent, ent);
|
|
if (anent.IsNull())
|
|
break;
|
|
IGESBasic_ToolOrderedGroup tool;
|
|
return tool.OwnCorrect(anent);
|
|
}
|
|
case 13: {
|
|
DeclareAndCast(IGESBasic_OrderedGroupWithoutBackP, anent, ent);
|
|
if (anent.IsNull())
|
|
break;
|
|
IGESBasic_ToolOrderedGroupWithoutBackP tool;
|
|
return tool.OwnCorrect(anent);
|
|
}
|
|
case 14: {
|
|
DeclareAndCast(IGESBasic_SingleParent, anent, ent);
|
|
if (anent.IsNull())
|
|
break;
|
|
IGESBasic_ToolSingleParent tool;
|
|
return tool.OwnCorrect(anent);
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
return Standard_False;
|
|
}
|