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

📄 callobject.h

📁 基于sipfoundy 公司开发的sipx协议API
💻 H
字号:
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$////////////////////////////////////////////////////////////////////////#ifndef _CallObject_h_#define _CallObject_h_// SYSTEM INCLUDES// APPLICATION INCLUDES#include <cp/CallManager.h>#include <mp/MpStreamPlaylistPlayer.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 CallObject{/* //////////////////////////// PUBLIC //////////////////////////////////// */public:/* ============================ CREATORS ================================== */   CallObject(CallManager* callManager, UtlString callId, UtlString playFile);   ~CallObject();   OsStatus playAudio();   void cleanUp();/* ============================ INQUIRY =================================== *//* //////////////////////////// PROTECTED ///////////////////////////////// */protected:/* //////////////////////////// PRIVATE /////////////////////////////////// */private:    CallManager* mpCallManager;    UtlString mCallId;        MpStreamPlaylistPlayer* mpPlayer;    UtlString mFile;};/* ============================ INLINE METHODS ============================ */#endif  // _CallObject_h_

⌨️ 快捷键说明

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