michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef _CC_SIPCC_CALLSERVERINFO_H michael@0: #define _CC_SIPCC_CALLSERVERINFO_H michael@0: michael@0: #include "CC_CallServerInfo.h" michael@0: michael@0: #include "common/Wrapper.h" michael@0: michael@0: namespace CSF michael@0: { michael@0: DECLARE_NS_PTR(CC_SIPCCCallServerInfo); michael@0: class CC_SIPCCCallServerInfo : public CC_CallServerInfo michael@0: { michael@0: private: michael@0: cc_callserver_ref_t callserverinfo_ref; michael@0: michael@0: CC_SIPCCCallServerInfo (cc_callserver_ref_t aCallServerInfo); michael@0: michael@0: CSF_DECLARE_WRAP(CC_SIPCCCallServerInfo, cc_callserver_ref_t); michael@0: michael@0: public: michael@0: ~CC_SIPCCCallServerInfo(); michael@0: michael@0: public: michael@0: virtual std::string getCallServerName(); michael@0: virtual cc_cucm_mode_t getCallServerMode(); michael@0: virtual cc_ccm_status_t getCallServerStatus(); michael@0: }; michael@0: }; michael@0: michael@0: #endif