ptcomponentintchangeevent.h

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

H
75
字号
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$//////////////////////////////////////////////////////////////////////////////#ifndef _PtComponentIntChangeEvent_h_#define _PtComponentIntChangeEvent_h_// SYSTEM INCLUDES// APPLICATION INCLUDES#include "ptapi/PtTerminalComponentEvent.h"// DEFINES// MACROS// EXTERNAL FUNCTIONS// EXTERNAL VARIABLES// CONSTANTS// STRUCTS// TYPEDEFS// FORWARD DECLARATIONS//:PtComponentIntChangeEvent contains PtComponent-associated event data,//:where a component's int type property has changedclass PtComponentIntChangeEvent : public PtTerminalComponentEvent{/* //////////////////////////// PUBLIC //////////////////////////////////// */public:/* ============================ CREATORS ================================== */   PtComponentIntChangeEvent(const PtComponentIntChangeEvent& rPtComponentIntChangeEvent);     //:Copy constructor   virtual   ~PtComponentIntChangeEvent();     //:Destructor/* ============================ MANIPULATORS ============================== */   PtComponentIntChangeEvent& operator=(const PtComponentIntChangeEvent& rhs);     //:Assignment operator/* ============================ ACCESSORS ================================= */   PtStatus getOldValue(int& rValue);     //:Returns the component property value before the change as a result      //:of the event.     //!param: (out) rValue - The reference used to return the component property value     //!retcode: PT_SUCCESS - Success     //!retcode: PT_PROVIDER_UNAVAILABLE - The provider is not available   PtStatus getNewValue(int& rValue);     //:Returns the component property value after the change as a result of      //:the event.     //!param: (out) rValue - The reference used to return the component property value     //!retcode: PT_SUCCESS - Success     //!retcode: PT_PROVIDER_UNAVAILABLE - The provider is not available/* ============================ INQUIRY =================================== *//* //////////////////////////// PROTECTED ///////////////////////////////// */protected:/* //////////////////////////// PRIVATE /////////////////////////////////// */private:   PtComponentIntChangeEvent();     //:Default constructor};/* ============================ INLINE METHODS ============================ */#endif  // _PtComponentIntChangeEvent_h_

⌨️ 快捷键说明

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