Skip to content

Commit

Permalink
Merge pull request #1027 from DLR-SC/1013_update_cpacs_3_4
Browse files Browse the repository at this point in the history
Update CPACS to version 3.4
  • Loading branch information
joergbrech authored Oct 16, 2024
2 parents f6f1e4c + eb6f4ef commit e4b77e9
Show file tree
Hide file tree
Showing 87 changed files with 14,057 additions and 3,004 deletions.
2 changes: 1 addition & 1 deletion cpacs_gen_input/CustomTypes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// maps generated types to actual tigl types

// enums
CPACSSymmetry TiglSymmetryAxis
CPACSSymmetryXyXzYz TiglSymmetryAxis
CPACSPointAbsRelType_refType ECPACSTranslationType
CPACSFarField_type TiglFarFieldType
CPACSRotorHub_type TiglRotorHubType
Expand Down
4,292 changes: 3,082 additions & 1,210 deletions cpacs_gen_input/cpacs_schema.xsd

Large diffs are not rendered by default.

4,129 changes: 3,011 additions & 1,118 deletions cpacs_gen_input/cpacs_schema.xsd.orig
100644 → 100755

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion src/CCPACSPoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ CCPACSPoint::CCPACSPoint(CCPACSPointList* parent, CTiglUIDManager* uidMgr)
{
}

CCPACSPoint::CCPACSPoint(CCPACSSeatModule* parent, CTiglUIDManager* uidMgr)
CCPACSPoint::CCPACSPoint(CCPACSBoundingBox* parent, CTiglUIDManager* uidMgr)
: generated::CPACSPoint(parent, uidMgr)
{
}

CCPACSPoint::CCPACSPoint(CCPACSDeckElementMass* parent, CTiglUIDManager* uidMgr)
: generated::CPACSPoint(parent, uidMgr)
{
}
Expand Down
3 changes: 2 additions & 1 deletion src/CCPACSPoint.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ class CCPACSPoint : public generated::CPACSPoint
TIGL_EXPORT CCPACSPoint(CCPACSControlSurfaceStep* parent, CTiglUIDManager* uidMgr);
TIGL_EXPORT CCPACSPoint(CCPACSControlSurfaceHingePoint* parent, CTiglUIDManager* uidMgr);
TIGL_EXPORT CCPACSPoint(CCPACSPointList* parent, CTiglUIDManager* uidMgr);
TIGL_EXPORT CCPACSPoint(CCPACSSeatModule* parent, CTiglUIDManager* uidMgr);
TIGL_EXPORT CCPACSPoint(CCPACSBoundingBox* parent, CTiglUIDManager* uidMgr);
TIGL_EXPORT CCPACSPoint(CCPACSDeckElementMass* parent, CTiglUIDManager* uidMgr);
TIGL_EXPORT CCPACSPoint(CCPACSTransformation* parent, CTiglUIDManager* uidMgr);

TIGL_EXPORT CCPACSPoint(const CCPACSPoint& p);
Expand Down
206 changes: 206 additions & 0 deletions src/generated/CPACSBoundingBox.cpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

107 changes: 107 additions & 0 deletions src/generated/CPACSBoundingBox.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e4b77e9

Please sign in to comment.