⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pstaodisplay.cpp

📁 基于sipfoundy 公司开发的sipx协议API
💻 CPP
字号:
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$//////////////////////////////////////////////////////////////////////////////// SYSTEM INCLUDES#include <assert.h>// APPLICATION INCLUDES#include "ps/PsTaoDisplay.h"#include <os/OsLock.h>// EXTERNAL FUNCTIONS// EXTERNAL VARIABLES// CONSTANTS// STATIC VARIABLE INITIALIZATIONS/* //////////////////////////// PUBLIC //////////////////////////////////// *//* ============================ CREATORS ================================== */// ConstructorPsTaoDisplay::PsTaoDisplay(){}PsTaoDisplay::PsTaoDisplay(const UtlString& rComponentName, int componentType) :PsTaoComponent(rComponentName, componentType){}// Copy constructorPsTaoDisplay::PsTaoDisplay(const PsTaoDisplay& rPsTaoDisplay){}// DestructorPsTaoDisplay::~PsTaoDisplay(){}/* ============================ MANIPULATORS ============================== */// Assignment operatorPsTaoDisplay& PsTaoDisplay::operator=(const PsTaoDisplay& rhs){   if (this == &rhs)            // handle the assignment to self case      return *this;   return *this;}/* ============================ ACCESSORS ================================= *//* ============================ INQUIRY =================================== *//* //////////////////////////// PROTECTED ///////////////////////////////// *//* //////////////////////////// PRIVATE /////////////////////////////////// *//* ============================ FUNCTIONS ================================= */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -