Skip to content
Snippets Groups Projects
Commit 837c0f3d authored by andy's avatar andy
Browse files

ENH: Exposed coupled flag

parent 9c7afd1b
No related branches found
No related tags found
No related merge requests found
...@@ -174,6 +174,9 @@ public: ...@@ -174,6 +174,9 @@ public:
//- Return const access to the coupled flag //- Return const access to the coupled flag
inline const Switch coupled() const; inline const Switch coupled() const;
//- Return non-const access to the coupled flag
inline Switch& coupled();
//- Return const access to the cell value correction flag //- Return const access to the cell value correction flag
inline const Switch cellValueSourceCorrection() const; inline const Switch cellValueSourceCorrection() const;
......
...@@ -101,6 +101,12 @@ inline Foam::scalar Foam::cloudSolution::trackTime() const ...@@ -101,6 +101,12 @@ inline Foam::scalar Foam::cloudSolution::trackTime() const
} }
inline Foam::Switch& Foam::cloudSolution::coupled()
{
return coupled_;
}
inline const Foam::Switch Foam::cloudSolution::coupled() const inline const Foam::Switch Foam::cloudSolution::coupled() const
{ {
return coupled_; return coupled_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment