1
0

Merged branch 'master' into c++11.

This commit is contained in:
Mattes D
2014-10-23 08:40:39 +02:00
51 changed files with 820 additions and 527 deletions

View File

@@ -31,17 +31,17 @@ protected:
/// The overriden Execute() method should check this value periodically and terminate if this is true
volatile bool m_ShouldTerminate;
public:
cIsThread(const AString & a_ThreadName);
virtual ~cIsThread();
/// Starts the thread; returns without waiting for the actual start
bool Start(void);
/// Signals the thread to terminate and waits until it's finished
void Stop(void);
/// Waits for the thread to finish. Doesn't signalize the ShouldTerminate flag
bool Wait(void);
@@ -58,7 +58,3 @@ protected:
#endif // CISTHREAD_H_INCLUDED