Definition at line 24 of file AppControlSrc.h. References Impala::CmdOptions::GetBool(), Impala::CmdOptions::GetInstance(), Impala::CmdOptions::GetInt(), mDelay, mDidSrcError, mDoContinuous, mDoLoop, mDone, mDoOneStep, mFramesDone, mHadJump, mMarkedFrameBegin, mMarkedFrameEnd, mSrc, mSrc2, mStartFrame, and mStepSize. 00024 : AppControl(id, false), mTimer(1) 00025 { 00026 CmdOptions& options = CmdOptions::GetInstance(); 00027 mSrc = 0; 00028 mSrc2 = 0; 00029 mDone = false; 00030 mHadJump = false; 00031 mStartFrame = options.GetInt("startFrame"); 00032 mMarkedFrameBegin = -1; 00033 mMarkedFrameEnd = -1; 00034 mDoContinuous = ! options.GetBool("step"); 00035 mStepSize = options.GetInt("stepSize"); 00036 mDoLoop = options.GetBool("loop"); 00037 mDoOneStep = true; 00038 mFramesDone = 0; 00039 mDelay = options.GetInt("delay"); 00040 mDidSrcError = false; 00041 }
Here is the call graph for this function:
|