Changeset 4987 for source/ariba/utility


Ignore:
Timestamp:
Jul 16, 2009, 11:01:04 AM (15 years ago)
Author:
Christoph Mayer
Message:

isrunning function für timer

Location:
source/ariba/utility/system
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/utility/system/Timer.cpp

    r4950 r4987  
    9393}
    9494
     95bool Timer::isRunning(){
     96        return running;
     97}
     98
    9599void Timer::stop() {
    96100        running = false;
  • source/ariba/utility/system/Timer.h

    r4950 r4987  
    9090        void reset();
    9191
     92        /**
     93         * Is the timer already running?
     94         */
     95        bool isRunning();
     96
    9297protected:
    9398        virtual void eventFunction();
Note: See TracChangeset for help on using the changeset viewer.