Skip to content
Snippets Groups Projects
Commit ef45b02d authored by Norbert Grunwald's avatar Norbert Grunwald
Browse files

changed order of class attributes

parent 538a1804
No related branches found
No related tags found
No related merge requests found
...@@ -29,10 +29,6 @@ class Component; ...@@ -29,10 +29,6 @@ class Component;
*/ */
class IdealGasLaw final : public Property class IdealGasLaw final : public Property
{ {
private:
Phase* _phase;
Component* _component;
public: public:
/// This method assigns a pointer to the material object that is the owner /// This method assigns a pointer to the material object that is the owner
/// of this property /// of this property
...@@ -69,6 +65,10 @@ public: ...@@ -69,6 +65,10 @@ public:
Variable const variable2, Variable const variable2,
ParameterLib::SpatialPosition const& pos, ParameterLib::SpatialPosition const& pos,
double const t) const override; double const t) const override;
private:
Phase* _phase;
Component* _component;
}; };
inline std::unique_ptr<IdealGasLaw> createIdealGasLaw( inline std::unique_ptr<IdealGasLaw> createIdealGasLaw(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment