trick/test/SIM_threads/models/threads/include/Thread2.h

30 lines
447 B
C
Raw Normal View History

2015-02-26 15:02:31 +00:00
/**
@file
@verbatim
PURPOSE:
(Test)
LANGUAGE:
(C++)
LIBRARY DEPENDENCY:
((Thread2.o))
@endverbatim
*******************************************************************************/
#ifndef THREAD_2_H
#define THREAD_2_H
2015-02-26 15:02:31 +00:00
class Thread2
{
public:
Thread2();
~Thread2();
int Step();
/*private:*/
bool m_bBusy;
int m_iBusyNSecs;
int m_iCount;
};
#endif