Add "Paused=0/1" to measures. This is an addition to a883e9d.

This commit is contained in:
Brian Ferguson
2013-07-15 11:59:58 -06:00
parent 6e9bc98d0b
commit 8bf1f6aec8
2 changed files with 19 additions and 2 deletions

View File

@ -66,8 +66,8 @@ public:
void Enable();
bool IsDisabled() { return m_Disabled; }
void Pause() { m_Paused = true; }
void Unpause() { m_Paused = false; }
void Pause();
void Unpause();
bool IsPaused() { return m_Paused; }
virtual void Command(const std::wstring& command);