00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef _BOGOTEL_IOOP_H
00011 #define _BOGOTEL_IOOP_H
00012
00013 #include <bogotel/timertarget.h>
00014
00015 namespace bogotel {
00016
00017 class CVoiceDev;
00018
00019 class CIOOp : public CTimerTarget {
00020 public:
00021 CIOOp(CVoiceDev*);
00022 virtual ~CIOOp();
00023 virtual void start() {}
00024 virtual void terminate(long reason);
00025 virtual long terminationEvent() = 0;
00026 protected:
00027 void log(int iLevel, char *szFmt, ...);
00028
00029 CVoiceDev* m_pVD;
00030 };
00031 }
00032 #endif // ! _BOGOTEL_IOOP_H