Advertisement
PsichiX

XeCore3 - Test Concurrency - TestThread.h

Oct 24th, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #ifndef __TEST_THREAD__
  2. #define __TEST_THREAD__
  3.  
  4. #include <XeCore/Common/Concurrent/Thread.h>
  5.  
  6. using namespace XeCore::Common::Concurrent;
  7. using namespace XeCore::Common;
  8.  
  9. class TestThread
  10. : public virtual IRtti
  11. , public virtual MemoryManager::Manageable
  12. , public Thread
  13. {
  14.     RTTI_CLASS_DECLARE( TestThread );
  15.  
  16. public:
  17.     TestThread();
  18.  
  19.     void            start();
  20.     virtual void    run();
  21. };
  22.  
  23. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement