Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/Process.cpp

    r7c4e29 r326a43b  
    3838
    3939int Process::getCurrStep(){
    40   OBSERVE;
    4140  return currStep;
    42 }
    43 
    44 void Process::setCurrStep(int _currStep){
    45   currStep = _currStep;
    4641}
    4742
     
    5247    return 0;
    5348}
    54 
    5549int Process::getMaxSteps(){
    5650  return maxSteps;
    5751}
    5852
    59 void Process::setMaxSteps(int _maxSteps){
    60   maxSteps = _maxSteps;
    61 }
    6253
    6354void Process::start(){
     
    7869  starts = false;
    7970}
    80 
    8171void Process::step(){
    8272  OBSERVE;
    8373  currStep++;
    8474}
    85 
    8675void Process::stop(){
    8776  stops = true;
Note: See TracChangeset for help on using the changeset viewer.