Changes in src/Actions/Process.cpp [326a43b:7c4e29]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/Process.cpp
r326a43b r7c4e29 38 38 39 39 int Process::getCurrStep(){ 40 OBSERVE; 40 41 return currStep; 42 } 43 44 void Process::setCurrStep(int _currStep){ 45 currStep = _currStep; 41 46 } 42 47 … … 47 52 return 0; 48 53 } 54 49 55 int Process::getMaxSteps(){ 50 56 return maxSteps; 51 57 } 52 58 59 void Process::setMaxSteps(int _maxSteps){ 60 maxSteps = _maxSteps; 61 } 53 62 54 63 void Process::start(){ … … 69 78 starts = false; 70 79 } 80 71 81 void Process::step(){ 72 82 OBSERVE; 73 83 currStep++; 74 84 } 85 75 86 void Process::stop(){ 76 87 stops = true;
Note:
See TracChangeset
for help on using the changeset viewer.