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

📄 activecall.h

📁 基于sipfoundy 公司开发的sipx协议API
💻 H
字号:
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$////////////////////////////////////////////////////////////////////////#ifndef _ActiveCall_h_#define _ActiveCall_h_// SYSTEM INCLUDES// APPLICATION INCLUDES#include <CallObject.h>#include <utl/UtlContainable.h>// DEFINES// MACROS// EXTERNAL FUNCTIONS// EXTERNAL VARIABLES// CONSTANTS// STRUCTS// TYPEDEFS// FORWARD DECLARATIONS//:Class short description which may consist of multiple lines (note the ':')// Class detailed description which may extend to multiple linesclass ActiveCall : public UtlContainable{/* //////////////////////////// PUBLIC //////////////////////////////////// */public:/* ============================ CREATORS ================================== */   ActiveCall(UtlString& callId);   ActiveCall(UtlString& callId, CallObject* call);      ~ActiveCall();   virtual UtlContainableType getContainableType() const;   virtual unsigned int hash() const;   int compareTo(const UtlContainable *b) const;   CallObject* getCallObject() { return mpCall; };/* ============================ MANIPULATORS ============================== *//* ============================ ACCESSORS ================================= *//* ============================ INQUIRY =================================== *//* //////////////////////////// PROTECTED ///////////////////////////////// */protected:/* //////////////////////////// PRIVATE /////////////////////////////////// */private:      UtlString mCallId;   CallObject* mpCall;};/* ============================ INLINE METHODS ============================ */#endif  // _ActiveCall_h_

⌨️ 快捷键说明

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