pteventlistener.cpp
来自「基于sipfoundy 公司开发的sipx协议API」· C++ 代码 · 共 67 行
CPP
67 行
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$//////////////////////////////////////////////////////////////////////////////// SYSTEM INCLUDES#include <assert.h>// APPLICATION INCLUDES#include "ptapi/PtEventListener.h"#include "ptapi/PtDefs.h"// EXTERNAL FUNCTIONS// EXTERNAL VARIABLES// CONSTANTS// STATIC VARIABLE INITIALIZATIONS/* //////////////////////////// PUBLIC //////////////////////////////////// *//* ============================ CREATORS ================================== */// ConstructorPtEventListener::PtEventListener(PtEventMask* mask){mpMask = mask;}// Copy constructorPtEventListener::PtEventListener(const PtEventListener& rPtEventListener){}// DestructorPtEventListener::~PtEventListener(){}/* ============================ MANIPULATORS ============================== */// Assignment operatorPtEventListener& PtEventListener::operator=(const PtEventListener& rhs){ if (this == &rhs) // handle the assignment to self case return *this; return *this;}/* ============================ ACCESSORS ================================= *//* ============================ INQUIRY =================================== */PT_IMPLEMENT_CLASS_INFO(PtEventListener, PT_NO_PARENT_CLASS)/* //////////////////////////// PROTECTED ///////////////////////////////// *//* //////////////////////////// PRIVATE /////////////////////////////////// *//* ============================ FUNCTIONS ================================= */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?