Thread.h (1344B)
1 /* 2 Copyright (C) 2006-2011 Nasca Octavian Paul 3 Author: Nasca Octavian Paul 4 5 This program is free software; you can redistribute it and/or modify 6 it under the terms of version 2 of the GNU General Public License 7 as published by the Free Software Foundation. 8 9 This program is distributed in the hope that it will be useful, 10 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 GNU General Public License (version 2) for more details. 13 14 You should have received a copy of the GNU General Public License (version 2) 15 along with this program; if not, write to the Free Software Foundation, 16 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 */ 18 #ifndef THREAD_H 19 #define THREAD_H 20 21 #ifdef WINDOWS 22 #include <windows.h> 23 #include <winbase.h> 24 #else 25 #include <pthread.h> 26 #endif 27 28 class Thread{ 29 public: 30 Thread(); 31 ~Thread(); 32 bool start(); 33 void stop(); 34 bool is_running(); 35 virtual void run()=0; 36 protected: 37 bool stopnow;//daca dau stop, atunci stop-now este true 38 private: 39 #ifdef WINDOWS 40 friend DWORD WINAPI thread_function( LPVOID arg ); 41 #else 42 friend void *thread_function(void *arg); 43 #endif 44 bool running; 45 bool stopped; 46 #ifdef WINDOWS 47 HANDLE hThread; 48 #else 49 pthread_t thread; 50 #endif 51 }; 52 53 #endif 54 55 56 57