17 lines
191 B
C++
17 lines
191 B
C++
#ifndef TEST2_H
|
|
#define TEST2_H
|
|
#include "CCThread.h"
|
|
|
|
|
|
class Test2 :public CTL::Thread_V{
|
|
public:
|
|
Test2();
|
|
~Test2();
|
|
void test();
|
|
void Run() override;
|
|
};
|
|
|
|
|
|
|
|
#endif //TEST2_H
|