00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00024 #ifndef SCALESTACK_THREADING_TEST_THREAD_H
00025 #define SCALESTACK_THREADING_TEST_THREAD_H
00026
00027 #include <scalestack/threading/thread.h>
00028
00029 namespace scalestack
00030 {
00031 namespace threading
00032 {
00033 namespace test
00034 {
00035
00036 class thread: public threading::thread
00037 {
00038 public:
00039
00040 thread(kernel::module& module);
00041
00042 void run(void);
00043
00044 private:
00045
00049 thread(const thread&);
00050
00054 thread& operator=(const thread&);
00055 };
00056
00057
00058
00059
00060
00061 inline thread::thread(kernel::module& module):
00062 threading::thread(module)
00063 {
00064 }
00065
00066 inline void thread::run(void)
00067 {
00068 }
00069
00070 }
00071 }
00072 }
00073
00074 #endif