📄 ptconnectionlistener.cpp
字号:
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$//////////////////////////////////////////////////////////////////////////////// SYSTEM INCLUDES#include <assert.h>// APPLICATION INCLUDES#include "ptapi/PtConnectionListener.h"// EXTERNAL FUNCTIONS// EXTERNAL VARIABLES// CONSTANTS// STATIC VARIABLE INITIALIZATIONSint FORCE_REFERENCE_PtConnectionListener = 0 ;/* //////////////////////////// PUBLIC //////////////////////////////////// *//* ============================ CREATORS ================================== */// ConstructorPtConnectionListener::PtConnectionListener(PtEventMask* mask) :PtCallListener(mask){}// Copy constructorPtConnectionListener::PtConnectionListener(const PtConnectionListener& rPtConnectionListener){}// DestructorPtConnectionListener::~PtConnectionListener(){}/* ============================ MANIPULATORS ============================== */// Assignment operatorPtConnectionListener& PtConnectionListener::operator=(const PtConnectionListener& rhs){ if (this == &rhs) // handle the assignment to self case return *this; return *this;}void PtConnectionListener::connectionCreated(const PtConnectionEvent& rEvent){}void PtConnectionListener::connectionAlerting(const PtConnectionEvent& rEvent){}void PtConnectionListener::connectionDisconnected(const PtConnectionEvent& rEvent){}void PtConnectionListener::connectionFailed(const PtConnectionEvent& rEvent){}void PtConnectionListener::connectionUnknown(const PtConnectionEvent& rEvent){}void PtConnectionListener::connectionDialing(const PtConnectionEvent& rEvent){}void PtConnectionListener::connectionEstablished(const PtConnectionEvent& rEvent){}void PtConnectionListener::connectionInitiated(const PtConnectionEvent& rEvent){}void PtConnectionListener::connectionNetworkAlerting(const PtConnectionEvent& rEvent){}void PtConnectionListener::connectionNetworkReached(const PtConnectionEvent& rEvent){}void PtConnectionListener::connectionOffered(const PtConnectionEvent& rEvent){}void PtConnectionListener::connectionQueued(const PtConnectionEvent& rEvent){}/* ============================ ACCESSORS ================================= *//* ============================ INQUIRY =================================== */PT_IMPLEMENT_CLASS_INFO(PtConnectionListener, PtCallListener)/* //////////////////////////// PROTECTED ///////////////////////////////// *//* //////////////////////////// PRIVATE /////////////////////////////////// *//* ============================ FUNCTIONS ================================= */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -