ThreadedObject.h
Go to the documentation of this file.
1 #ifndef __THREADED_OBJECT__
2 #define __THREADED_OBJECT__
3 
4 #include <SDL/SDL_thread.h>
5 
7 {
8 public:
11  void start();
12  void stop();
13  void pause();
14  void resume();
15  void wait();
16  bool isPausing();
17  bool isRunning();
18  virtual bool oneStep();
19  void notifyFinish();
20 private:
22  SDL_Thread *m_thread;
23  SDL_sem *m_sem;
24 };
25 
26 #endif
virtual bool oneStep()
SDL_sem * m_sem
SDL_Thread * m_thread


hrpsys
Author(s): AIST, Fumio Kanehiro
autogenerated on Thu May 6 2021 02:41:51