mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
make some getter methods of liggghtsCommandModel const
This commit is contained in:
@ -94,7 +94,7 @@ public:
|
||||
|
||||
// Member Functions
|
||||
|
||||
word name(){return propsDict_.dictName();};
|
||||
word name() const {return propsDict_.dictName();}
|
||||
|
||||
const char* command(int);
|
||||
|
||||
|
||||
@ -165,15 +165,15 @@ public:
|
||||
|
||||
// Access
|
||||
|
||||
int nextRun(){return nextRun_;}
|
||||
int nextRun() const {return nextRun_;}
|
||||
|
||||
int lastRun(){return lastRun_;}
|
||||
int lastRun() const {return lastRun_;}
|
||||
|
||||
virtual word name()=0;
|
||||
virtual word name() const=0;
|
||||
|
||||
bool exactTiming(){return exactTiming_;}
|
||||
bool exactTiming() const {return exactTiming_;}
|
||||
|
||||
label commandLines(){return commandLines_;}
|
||||
label commandLines() const {return commandLines_;}
|
||||
|
||||
void parseCommandList(wordList&, labelList&, scalarList&, word&, dictionary&, bool&);
|
||||
};
|
||||
|
||||
@ -89,7 +89,7 @@ public:
|
||||
|
||||
// Member Functions
|
||||
|
||||
word name(){return propsDict_.dictName();};
|
||||
word name() const {return propsDict_.dictName();}
|
||||
|
||||
const char* command(int);
|
||||
|
||||
|
||||
@ -92,7 +92,7 @@ public:
|
||||
|
||||
bool runCommand(int);
|
||||
|
||||
word name(){return "runLiggghts";};
|
||||
word name() const {return "runLiggghts";}
|
||||
|
||||
void set(int);
|
||||
};
|
||||
|
||||
@ -97,7 +97,7 @@ public:
|
||||
|
||||
bool runCommand(int);
|
||||
|
||||
word name(){return "writeLiggghts";};
|
||||
word name() const {return "writeLiggghts";}
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user