⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pslampdev.h

📁 基于sipfoundy 公司开发的sipx协议API
💻 H
字号:
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$//////////////////////////////////////////////////////////////////////////////#ifndef _PsLampDev_h_#define _PsLampDev_h_// SYSTEM INCLUDES// APPLICATION INCLUDES#include "os/OsDefs.h"#include "os/OsBSem.h"// DEFINES// MACROS// EXTERNAL FUNCTIONS// EXTERNAL VARIABLES// CONSTANTS// STRUCTS// TYPEDEFS// FORWARD DECLARATIONSclass PsLampTask;//:Base class for the phone set lamp device// Platform-specific lamp classes are all derived from this class.class PsLampDev{/* //////////////////////////// PUBLIC //////////////////////////////////// */public:/* ============================ CREATORS ================================== */   static PsLampDev* getLampDev(PsLampTask* pLampTask);     //:Return a pointer to the lamp device, creating it if necessary.   virtual   ~PsLampDev();     //:Destructor/* ============================ MANIPULATORS ============================== */   virtual void lightLamps(unsigned long onLamps) = 0;     //:Turn on the indicated lamps     // Each lamp is represented by a bit in the onLamps parameter./* ============================ ACCESSORS ================================= *//* ============================ INQUIRY =================================== *//* //////////////////////////// PROTECTED ///////////////////////////////// */protected:   static PsLampDev*   spInstance;  // pointer to the single instance of                                    //  the PsLampDev class   static OsBSem       sLock;       // semaphore used to ensure that there                                    //  is only one instance of this class   PsLampDev(PsLampTask* pLampTask=NULL);     //:Constructor/* //////////////////////////// PRIVATE /////////////////////////////////// */private:   PsLampTask* mpLampTask;   PsLampDev(const PsLampDev& rPsLampDev);     //:Copy constructor (not implemented for this class)   PsLampDev& operator=(const PsLampDev& rhs);     //:Assignment operator (not implemented for this class)};/* ============================ INLINE METHODS ============================ */#endif  // _PsLampDev_h_

⌨️ 快捷键说明

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