AktionsThread.h 411 B

1234567891011121314151617181920212223242526
  1. #ifndef AktionsThread_H
  2. #define AktionsThread_H
  3. #include <Klient.h>
  4. #include <Thread.h>
  5. using namespace Framework;
  6. class AktionsThread : public Thread
  7. {
  8. private:
  9. int aktion;
  10. void *arg1;
  11. void *arg2;
  12. void *arg3;
  13. void *arg4;
  14. void *arg5;
  15. public:
  16. // Konstruktor
  17. AktionsThread( int aktion, void *arg1, void *arg2, void *arg3, void *arg4, void *arg5 );
  18. // nicht constant
  19. virtual void thread();
  20. };
  21. #endif