libtdepim
weaverextensions.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef WEAVEREXTENSIONS_H
00017 #define WEAVEREXTENSIONS_H
00018
00019 #include <tqobject.h>
00020
00021 namespace KPIM {
00022 namespace ThreadWeaver {
00023
00024 class Weaver;
00025 class Thread;
00026
00033 class WeaverExtension : public TQObject
00034 {
00035 Q_OBJECT
00036
00037 public:
00038 WeaverExtension ( TQObject *parent = 0, const char *name = 0);
00042 void attach (Weaver *);
00043 virtual ~WeaverExtension() = 0;
00044 public slots:
00045
00046
00047 virtual void threadCreated (Thread *);
00048
00049 virtual void threadDestroyed (Thread *);
00050
00051 virtual void threadBusy (Thread *);
00052
00053
00054 virtual void threadSuspended (Thread *);
00055 };
00056
00057 }
00058 }
00059
00060 #endif // WEAVEREXTENSIONS_H
|