📄 ptconnectionevent.h
字号:
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$//////////////////////////////////////////////////////////////////////////////#ifndef _PtConnectionEvent_h_#define _PtConnectionEvent_h_// SYSTEM INCLUDES// APPLICATION INCLUDES#include "ptapi/PtCallEvent.h"// DEFINES// MACROS// EXTERNAL FUNCTIONS// EXTERNAL VARIABLES// CONSTANTS// STRUCTS// TYPEDEFS// FORWARD DECLARATIONSclass PtConnection;class TaoClientTask;//:PtConnectionEvent contains PtConnection-associated event dataclass PtConnectionEvent : public PtCallEvent{/* //////////////////////////// PUBLIC //////////////////////////////////// */public:/* ============================ CREATORS ================================== */ PtConnectionEvent(PtEvent::PtEventId eventId, int metaCode, const char* addressName, const char* callId, int sipResponseCode, const char* sipResponseText, const char* newCallId = 0, const char** oldCallIds = 0, int numOldCalls = 0, PtEvent::PtEventCause cause = PtEvent::CAUSE_NORMAL, TaoClientTask *pClient = NULL); PtConnectionEvent(TaoClientTask *pClient); PtConnectionEvent(const PtConnectionEvent& rPtConnectionEvent); //:Copy constructor PtConnectionEvent(PtEvent::PtEventId eventId = PtEvent::EVENT_INVALID); //:Default constructor virtual ~PtConnectionEvent(); //:Destructor/* ============================ MANIPULATORS ============================== */ PtConnectionEvent& operator=(const PtConnectionEvent& rhs); //:Assignment operator virtual void setEventAddress(const char* address);/* ============================ ACCESSORS ================================= */ PtStatus getConnection(PtConnection& rConnection) const ; //:Returns the connection object associated with this event. //!param: (out) prConnection - The reference used to return the connection pointer //!retcode: PT_SUCCESS - Success //!retcode: PT_PROVIDER_UNAVAILABLE - The provider is not available/* ============================ INQUIRY =================================== *//* //////////////////////////// PROTECTED ///////////////////////////////// */protected: char mAddressName[128];/* //////////////////////////// PRIVATE /////////////////////////////////// */private:};/* ============================ INLINE METHODS ============================ */#endif // _PtConnectionEvent_h_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -