pshookswdev.h

来自「基于sipfoundy 公司开发的sipx协议API」· C头文件 代码 · 共 89 行

H
89
字号
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$//////////////////////////////////////////////////////////////////////////////#ifndef _PsHookswDev_h_#define _PsHookswDev_h_// SYSTEM INCLUDES// APPLICATION INCLUDES#include "os/OsDefs.h"#include "os/OsBSem.h"// DEFINES// MACROS// EXTERNAL FUNCTIONS// EXTERNAL VARIABLES// CONSTANTS// STRUCTS// TYPEDEFS// FORWARD DECLARATIONSclass PsHookswTask;//:Base class for the phone set hook switch device// Platform-specific hook switch classes are all derived from this class.class PsHookswDev{/* //////////////////////////// PUBLIC //////////////////////////////////// */public:/* ============================ CREATORS ================================== */   static PsHookswDev* getHookswDev(PsHookswTask* pHookswTask=NULL);     //:Return a pointer to the hookswitch device, creating it if necessary.   virtual   ~PsHookswDev();     //:Destructor/* ============================ MANIPULATORS ============================== */   virtual void disableIntr(void) = 0;     //:Disable hook switch interrupts   virtual void enableIntr(UtlBoolean lookForOffHook) = 0;     //:Enable hook switch interrupts/* ============================ ACCESSORS ================================= *//* ============================ INQUIRY =================================== */   virtual UtlBoolean isOffHook(void) = 0;     //:Return TRUE if the hookswitch is "off hook", otherwise FALSE.   virtual UtlBoolean isOnHook(void) = 0;     //:Return TRUE if the hookswitch is "on hook", otherwise FALSE./* //////////////////////////// PROTECTED ///////////////////////////////// */protected:   static PsHookswDev* spInstance;  // pointer to the single instance of                                    //  the PsHookswDev class   static OsBSem       sLock;       // semaphore used to ensure that there                                    //  is only one instance of this class   PsHookswTask*       mpHookswTask;   PsHookswDev(PsHookswTask* pHookswTask);     //:Constructor/* //////////////////////////// PRIVATE /////////////////////////////////// */private:   PsHookswDev(const PsHookswDev& rPsHookswDev);     //:Copy constructor (not implemented for this class)   PsHookswDev& operator=(const PsHookswDev& rhs);     //:Assignment operator (not implemented for this class)};/* ============================ INLINE METHODS ============================ */#endif  // _PsHookswDev_h_

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?