ptconnectionevent.h
来自「基于sipfoundy 公司开发的sipx协议API」· C头文件 代码 · 共 89 行
H
89 行
//// 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 + =
减小字号Ctrl + -
显示快捷键?