亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? ptconnectionlistener.h

?? 基于sipfoundy 公司開發(fā)的sipx協(xié)議API
?? H
字號(hào):
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$//////////////////////////////////////////////////////////////////////////////#ifndef _PtConnectionListener_h_#define _PtConnectionListener_h_// SYSTEM INCLUDES// APPLICATION INCLUDES#include <ptapi/PtCallListener.h>// DEFINES// MACROS// EXTERNAL FUNCTIONS// EXTERNAL VARIABLES// CONSTANTS// STRUCTS// TYPEDEFS// FORWARD DECLARATIONSclass PtConnectionEvent;//:The PtConnectionListener is used to register with PtAddress, PtTerminal, //:and PtCall objects to receive events from associated PtCall and //:PtConnection objects.class PtConnectionListener : public PtCallListener{/* //////////////////////////// PUBLIC //////////////////////////////////// */public:   PT_CLASS_INFO_MEMBERS/* ============================ CREATORS ================================== */   PtConnectionListener(PtEventMask* pMask = NULL);     //:Default constructor     //!param: (in) pMask - Event mask defining events the listener is interested in.  This must be a subset of the events that the listener supports.  The mask may be NULL where it is assumed that all events applicable to the derived listener are of interest.   virtual   ~PtConnectionListener();     //:Destructor/* ============================ MANIPULATORS ============================== */  virtual void connectionCreated(const PtConnectionEvent& rEvent);     //:Method invoked on listener for event id =      //:CONNECTION_CREATED      //:indicating that a new PtConnection object has been created.     // The event parameter is valid only within      // this method.  The implementation must copy the event if     // it is needed beyond the scope of an invocation.  The implementation     // of this method should not block as it may prevent other listeners     // from processing events in a timely fashion.     //!param: (in) rEvent - Reference to the PtEvent containing the specific event information.  virtual void connectionAlerting(const PtConnectionEvent& rEvent);     //:Method invoked on listener for event id =      //:CONNECTION_ALERTING      //:indicating that the state of the PtConnection object has changed to      //:PtConnection::ALERTING.     // The event parameter is valid only within      // this method.  The implementation must copy the event if     // it is needed beyond the scope of an invocation.  The implementation     // of this method should not block as it may prevent other listeners     // from processing events in a timely fashion.     //!param: (in) rEvent - Reference to the PtEvent containing the specific event information.  virtual void connectionDisconnected(const PtConnectionEvent& rEvent);     //:Method invoked on listener for event id =      //:CONNECTION_DISCONNECTED      //:indicating that the state of the PtConnection object has changed to      //:PtConnection::DISCONNECTED.     // The event parameter is valid only within      // this method.  The implementation must copy the event if     // it is needed beyond the scope of an invocation.  The implementation     // of this method should not block as it may prevent other listeners     // from processing events in a timely fashion.     //!param: (in) rEvent - Reference to the PtEvent containing the specific event information.  virtual void connectionFailed(const PtConnectionEvent& rEvent);     //:Method invoked on listener for event id =      //:CONNECTION_FAILED      //:indicating that the state of the PtConnection object has changed to      //:PtConnection::FAILED.     // The event parameter is valid only within      // this method.  The implementation must copy the event if     // it is needed beyond the scope of an invocation.  The implementation     // of this method should not block as it may prevent other listeners     // from processing events in a timely fashion.     //!param: (in) rEvent - Reference to the PtEvent containing the specific event information.  virtual void connectionUnknown(const PtConnectionEvent& rEvent);     //:Method invoked on listener for event id =      //:CONNECTION_UNKNOWN      //:indicating that the state of the PtConnection object has changed to      //:PtConnection::UNKNOWN.     // The event parameter is valid only within      // this method.  The implementation must copy the event if     // it is needed beyond the scope of an invocation.  The implementation     // of this method should not block as it may prevent other listeners     // from processing events in a timely fashion.     //!param: (in) rEvent - Reference to the PtEvent containing the specific event information.  virtual void connectionDialing(const PtConnectionEvent& rEvent);     //:Method invoked on listener for event id =      //:CONNECTION_DIALING      //:indicating that the state of the PtConnection object has changed to      //:PtConnection::DIALING.     // The event parameter is valid only within      // this method.  The implementation must copy the event if     // it is needed beyond the scope of an invocation.  The implementation     // of this method should not block as it may prevent other listeners     // from processing events in a timely fashion.     //!param: (in) rEvent - Reference to the PtEvent containing the specific event information.  virtual void connectionEstablished(const PtConnectionEvent& rEvent);     //:Method invoked on listener for event id =      //:CONNECTION_ESTABLISHED      //:indicating that the state of the PtConnection object has changed to      //:PtConnection::ESTABLISHED.     // The event parameter is valid only within      // this method.  The implementation must copy the event if     // it is needed beyond the scope of an invocation.  The implementation     // of this method should not block as it may prevent other listeners     // from processing events in a timely fashion.     //!param: (in) rEvent - Reference to the PtEvent containing the specific event information.  virtual void connectionInitiated(const PtConnectionEvent& rEvent);     //:Method invoked on listener for event id =      //:CONNECTION_INITIATED      //:indicating that the state of the PtConnection object has changed to      //:PtConnection::INITIATED.     // The event parameter is valid only within      // this method.  The implementation must copy the event if     // it is needed beyond the scope of an invocation.  The implementation     // of this method should not block as it may prevent other listeners     // from processing events in a timely fashion.     //!param: (in) rEvent - Reference to the PtEvent containing the specific event information.  virtual void connectionNetworkAlerting(const PtConnectionEvent& rEvent);     //:Method invoked on listener for event id =      //:CONNECTION_NETWORK_ALERTING      //:indicating that the state of the PtConnection object has changed to      //:PtConnection::NETWORK_ALERTING.     // The event parameter is valid only within      // this method.  The implementation must copy the event if     // it is needed beyond the scope of an invocation.  The implementation     // of this method should not block as it may prevent other listeners     // from processing events in a timely fashion.     //!param: (in) rEvent - Reference to the PtEvent containing the specific event information.  virtual void connectionNetworkReached(const PtConnectionEvent& rEvent);     //:Method invoked on listener for event id =      //:CONNECTION_NETWORK_REACHED      //:indicating that the state of the PtConnection object has changed to      //:PtConnection::NETWORK_REACHED.     // The event parameter is valid only within      // this method.  The implementation must copy the event if     // it is needed beyond the scope of an invocation.  The implementation     // of this method should not block as it may prevent other listeners     // from processing events in a timely fashion.     //!param: (in) rEvent - Reference to the PtEvent containing the specific event information.  virtual void connectionOffered(const PtConnectionEvent& rEvent);     //:Method invoked on listener for event id =      //:CONNECTION_OFFERED      //:indicating that the state of the PtConnection object has changed to      //:PtConnection::OFFERED.     // The event parameter is valid only within      // this method.  The implementation must copy the event if     // it is needed beyond the scope of an invocation.  The implementation     // of this method should not block as it may prevent other listeners     // from processing events in a timely fashion.     //!param: (in) rEvent - Reference to the PtEvent containing the specific event information.  virtual void connectionQueued(const PtConnectionEvent& rEvent);     //:Method invoked on listener for event id =      //:CONNECTION_QUEUED      //:indicating that the state of the PtConnection object has changed to      //:PtConnection::QUEUED.     // The event parameter is valid only within      // this method.  The implementation must copy the event if     // it is needed beyond the scope of an invocation.  The implementation     // of this method should not block as it may prevent other listeners     // from processing events in a timely fashion.     //!param: (in) rEvent - Reference to the PtEvent containing the specific event information./* ============================ ACCESSORS ================================= */   static const char* className();     //:Returns the name of this class     //!returns: Returns the string representation of the name of this class/* ============================ INQUIRY =================================== */   virtual PtBoolean isClass(const char* pClassName);     //:Determines if this object if of the specified type.     //!param: (in) pClassName - the string to compare with the name of this class.     //!retcode: TRUE - if the given string contains the class name of this class.     //!retcode: FALSE - if the given string does not match that of this class   virtual PtBoolean isInstanceOf(const char* pClassName);     //:Determines if this object is either an instance of or is derived from      //:the specified type.     //!param: (in) pClassName - the string to compare with the name of this class.     //!retcode: TRUE - if this object is either an instance of or is derived from the specified class.     //!retcode: FALSE - if this object is not an instance of the specified class./* //////////////////////////// PROTECTED ///////////////////////////////// */protected:/* //////////////////////////// PRIVATE /////////////////////////////////// */private:   PtConnectionListener(const PtConnectionListener& rPtConnectionListener);     //:Copy constructor   PtConnectionListener& operator=(const PtConnectionListener& rhs);     //:Assignment operator};/* ============================ INLINE METHODS ============================ */#endif  // _PtConnectionListener_h_

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久精品国产精品亚洲精品| 欧美一区午夜精品| 国产成人免费视频网站 | 蜜臀久久99精品久久久久宅男| 午夜欧美2019年伦理| 亚洲午夜电影在线观看| 亚洲va国产天堂va久久en| 天天操天天综合网| 水蜜桃久久夜色精品一区的特点| 日欧美一区二区| 蜜桃视频免费观看一区| 麻豆精品视频在线观看| 国产精品亚洲一区二区三区在线| 国产+成+人+亚洲欧洲自线| 国产寡妇亲子伦一区二区| 成人午夜电影久久影院| 不卡一区二区三区四区| 色就色 综合激情| 欧美区一区二区三区| 欧美一区二区久久| 精品成人一区二区三区四区| 久久久久久久久久电影| 国产精品伦一区二区三级视频| 亚洲三级在线免费| 亚洲国产成人va在线观看天堂| 99久久er热在这里只有精品66| av激情综合网| 欧美一级艳片视频免费观看| 国产精品系列在线观看| 经典三级在线一区| 丁香婷婷综合网| 在线观看av不卡| 91精品国产综合久久精品性色| 欧美一二三四在线| 中文字幕欧美日韩一区| 亚洲久本草在线中文字幕| 午夜视频久久久久久| 精品在线观看免费| 成人爱爱电影网址| 欧美色手机在线观看| 精品奇米国产一区二区三区| 日本一区二区成人| 亚洲第一福利视频在线| 国产资源在线一区| 91麻豆免费看片| 欧美大片一区二区| 亚洲精品一二三| 久久99热这里只有精品| av高清不卡在线| 日韩限制级电影在线观看| 国产精品久久久久一区二区三区共 | 色欧美乱欧美15图片| 欧美精品久久99| 中文字幕二三区不卡| 午夜天堂影视香蕉久久| 国产精品一二三| 欧美精品久久99久久在免费线| 中文字幕精品在线不卡| 日韩中文字幕一区二区三区| 成人蜜臀av电影| 欧美成人官网二区| 一区二区高清免费观看影视大全| 激情图区综合网| 欧美综合视频在线观看| 久久久精品2019中文字幕之3| 亚洲成在人线免费| 波多野洁衣一区| 久久一夜天堂av一区二区三区| 亚洲综合激情网| 不卡影院免费观看| 久久久国际精品| 青青草97国产精品免费观看无弹窗版| 国产91综合一区在线观看| 日韩欧美你懂的| 亚洲高清在线精品| 色综合久久久久综合体桃花网| 亚洲人吸女人奶水| 国产精品一区二区三区网站| 777久久久精品| 亚洲国产日韩a在线播放| 国产aⅴ综合色| 精品国产网站在线观看| 日韩精品一二三四| 欧美性一区二区| 亚洲激情中文1区| 成人午夜视频网站| 久久精品一区二区三区四区| 美国十次综合导航| 91精品国产综合久久精品app| 亚洲视频一区在线观看| 成人毛片视频在线观看| 国产日韩欧美a| 国产高清视频一区| 国产日韩精品一区二区三区| 国产精品一区二区在线播放| 久久久欧美精品sm网站| 国产一区二区导航在线播放| 精品国产三级电影在线观看| 黄色资源网久久资源365| 日韩一级大片在线观看| 奇米精品一区二区三区在线观看一| 欧美日韩一区二区欧美激情| 一区二区三区加勒比av| 91福利小视频| 亚洲一区二区三区视频在线播放 | 久久久99久久| 国产成人高清视频| 国产欧美精品日韩区二区麻豆天美| 黑人精品欧美一区二区蜜桃| 精品国产乱码久久久久久老虎| 久久99久久99精品免视看婷婷| 欧美成人激情免费网| 国内精品嫩模私拍在线| 久久精品人人做人人综合| 国产成人午夜精品影院观看视频 | 国产精品456露脸| 国产精品久久久久桃色tv| 97se亚洲国产综合自在线观| 亚洲欧美经典视频| 欧美日韩中文一区| 日本欧美一区二区在线观看| 久久影院午夜片一区| 国产成人久久精品77777最新版本| 中文字幕精品在线不卡| 久久在线观看免费| 成人免费高清在线| 夜夜嗨av一区二区三区网页| 欧美精品在线观看播放| 韩国一区二区在线观看| 中文字幕免费一区| 在线观看视频91| 热久久国产精品| 26uuu亚洲综合色欧美| 成人激情黄色小说| 夜夜亚洲天天久久| 日韩欧美中文字幕公布| 丁香一区二区三区| 亚洲国产你懂的| 精品国产91九色蝌蚪| 99re视频这里只有精品| 日韩av一区二区在线影视| 久久精品亚洲一区二区三区浴池| 94色蜜桃网一区二区三区| 午夜激情久久久| 久久久777精品电影网影网 | 国产日韩精品一区| 欧美在线色视频| 国产一区二区网址| 亚洲综合精品自拍| 久久久久久一二三区| 欧美在线看片a免费观看| 久久99久久99精品免视看婷婷 | 久久国产综合精品| 1区2区3区欧美| 日韩三级av在线播放| av网站免费线看精品| 美女爽到高潮91| 亚洲乱码日产精品bd| 欧美tk—视频vk| 在线影院国内精品| 国产精品99久久久久久宅男| 亚洲福利一二三区| 国产精品成人免费精品自在线观看| 这里只有精品电影| 成人app在线| 久久精品国产亚洲高清剧情介绍 | 一本大道综合伊人精品热热| 蜜桃av噜噜一区二区三区小说| 亚洲欧洲精品一区二区三区 | 日本成人中文字幕| 亚洲视频免费在线观看| 久久人人97超碰com| 欧美日韩久久久久久| a4yy欧美一区二区三区| 久久www免费人成看片高清| 亚洲最大成人综合| 国产精品免费aⅴ片在线观看| 日韩一级大片在线| 在线欧美小视频| 国产成人综合自拍| 蜜桃传媒麻豆第一区在线观看| 亚洲一区二区精品3399| 亚洲欧美怡红院| 国产视频911| 久久无码av三级| 日韩视频在线观看一区二区| 欧美性受xxxx黑人xyx| 97久久超碰国产精品| 国产精品一线二线三线精华| 久久机这里只有精品| 欧美aa在线视频| 五月婷婷欧美视频| 亚洲夂夂婷婷色拍ww47| 亚洲三级在线免费| 自拍偷拍国产亚洲| 国产精品传媒在线| 国产精品国产三级国产aⅴ中文| 国产偷国产偷亚洲高清人白洁| 久久久久久亚洲综合影院红桃 | 五月婷婷久久综合|