Skip to content

Commit

Permalink
add missing macros
Browse files Browse the repository at this point in the history
  • Loading branch information
merakulix committed Nov 28, 2024
1 parent c435647 commit 0c6165c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/structural_elements/CCPACSFuselageWallSegment.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,22 +36,22 @@ class CCPACSFuselageWallSegment : public generated::CPACSWallSegment, public CTi
public:
TIGL_EXPORT CCPACSFuselageWallSegment(CCPACSWallSegments* parent, CTiglUIDManager* uidMgr);

std::string GetDefaultedUID() const override
TIGL_EXPORT std::string GetDefaultedUID() const override
{
return GetUID().value_or("UnknownWallSegment");
}

TiglGeometricComponentIntent GetComponentIntent() const override
TIGL_EXPORT TiglGeometricComponentIntent GetComponentIntent() const override

Check warning on line 44 in src/structural_elements/CCPACSFuselageWallSegment.h

View check run for this annotation

Codecov / codecov/patch

src/structural_elements/CCPACSFuselageWallSegment.h#L44

Added line #L44 was not covered by tests
{
return TIGL_INTENT_INNER_STRUCTURE | TIGL_INTENT_PHYSICAL;
}

TiglGeometricComponentType GetComponentType() const override
TIGL_EXPORT TiglGeometricComponentType GetComponentType() const override

Check warning on line 49 in src/structural_elements/CCPACSFuselageWallSegment.h

View check run for this annotation

Codecov / codecov/patch

src/structural_elements/CCPACSFuselageWallSegment.h#L49

Added line #L49 was not covered by tests
{
return TIGL_COMPONENT_FUSELAGE_WALL;
}

TopoDS_Compound GetCutPlanes() const;
TIGL_EXPORT TopoDS_Compound GetCutPlanes() const;

TIGL_EXPORT void SetPhi(const double& value) override;
TIGL_EXPORT void SetDoubleSidedExtrusion(const boost::optional<bool>& value) override;
Expand Down

0 comments on commit 0c6165c

Please sign in to comment.