15 lines
134 B
C++
15 lines
134 B
C++
#include "workthread.h"
|
|
|
|
workthread::workthread()
|
|
{
|
|
|
|
}
|
|
|
|
void workthread::run()
|
|
{
|
|
while(1)
|
|
{
|
|
thred_loop();
|
|
}
|
|
|
|
} |