Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CPACS to version 3.4 #1027

Merged
merged 2 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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(CCPACSSeatModule* parent, CTiglUIDManager* uidMgr)
CCPACSPoint::CCPACSPoint(CCPACSBoundingBox* parent, CTiglUIDManager* uidMgr)
: generated::CPACSPoint(parent, uidMgr)

Check warning on line 40 in src/CCPACSPoint.cpp

View check run for this annotation

Codecov / codecov/patch

src/CCPACSPoint.cpp#L39-L40

Added lines #L39 - L40 were not covered by tests
{
}

CCPACSPoint::CCPACSPoint(CCPACSDeckElementMass* parent, CTiglUIDManager* uidMgr)

Check warning on line 44 in src/CCPACSPoint.cpp

View check run for this annotation

Codecov / codecov/patch

src/CCPACSPoint.cpp#L44

Added line #L44 was not covered by tests
: 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
Loading