sipxtapieventdispatcher.h

来自「基于sipfoundy 公司开发的sipx协议API」· C头文件 代码 · 共 90 行

H
90
字号
// // //// Copyright (C) 2005 SIPfoundry Inc.// Licensed by SIPfoundry under the LGPL license.//// Copyright (C) 2005 SIPez LLC.// Licensed to SIPfoundry under a Contributor Agreement.// // Author: Daniel Petrie//         dpetrie AT SIPez DOT com//////////////////////////////////////////////////////////////////////////////#ifndef _SipXtapiEventDispatcher_h_#define _SipXtapiEventDispatcher_h_// SYSTEM INCLUDES#include <os/OsServerTask.h>#include <tapi/sipXtapi.h>#include <tapi/sipXtapiEvents.h>#include <tapi/sipXtapiInternal.h>// APPLICATION INCLUDES// DEFINES// MACROS// EXTERNAL FUNCTIONS// EXTERNAL VARIABLES// CONSTANTS// STRUCTS// TYPEDEFS// FORWARD DECLARATIONS////! Task to collect, process and dispatch call events to the sipXtapi event callbacks/*! This task is for events that need to be queue to a OsServerTask *  that are to be fired through the sipXtapi callbacks. *  Initially this is DTMF tones * */class SipXtapiEventDispatcher : public OsServerTask{/* ============================= P U B L I C ============================== */public:/* ============================ C R E A T O R S =========================== */    //! Constructor    /*! description     */    SipXtapiEventDispatcher(SIPX_INSTANCE_DATA& instance);    //! Destructor    virtual    ~SipXtapiEventDispatcher();/* ======================== M A N I P U L A T O R S ======================= */    UtlBoolean handleMessage(OsMsg& message);    void dtmfToSipXtapiMinorEvent(int dtmfButton, SIPX_CALLSTATE_MINOR& sipxTapiMinorEvent);/* ========================== A C C E S S O R S =========================== *//* ============================ I N Q U I R Y ============================= *///__________________________________________________________________________///* ========================== P R O T E C T E D =========================== */protected://__________________________________________________________________________///* ============================ P R I V A T E ============================= */private:    //! Disabled copy constructor    SipXtapiEventDispatcher(const SipXtapiEventDispatcher& rSipXtapiEventDispatcher);    //! Disabled assignment operator    SipXtapiEventDispatcher& operator=(const SipXtapiEventDispatcher& rhs);    SIPX_INSTANCE_DATA* mpInstance;};#endif  // _SipXtapiEventDispatcher_h_

⌨️ 快捷键说明

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