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_DEVICEINFO_H michael@0: #define _CC_SIPCC_DEVICEINFO_H michael@0: michael@0: #include "CC_DeviceInfo.h" michael@0: michael@0: #include "common/Wrapper.h" michael@0: michael@0: namespace CSF michael@0: { michael@0: DECLARE_NS_PTR(CC_SIPCCDeviceInfo); michael@0: class CC_SIPCCDeviceInfo : public CC_DeviceInfo michael@0: { michael@0: private: michael@0: CC_SIPCCDeviceInfo (cc_deviceinfo_ref_t aDeviceInfo); michael@0: cc_deviceinfo_ref_t deviceinfo_ref; michael@0: michael@0: CSF_DECLARE_WRAP(CC_SIPCCDeviceInfo, cc_deviceinfo_ref_t); michael@0: michael@0: public: michael@0: ~CC_SIPCCDeviceInfo(); michael@0: michael@0: public: michael@0: virtual std::string getDeviceName(); michael@0: virtual cc_service_cause_t getServiceCause(); michael@0: virtual cc_service_state_t getServiceState(); michael@0: virtual std::vector getCalls(); michael@0: virtual std::vector getLines(); michael@0: virtual std::vector getFeatures(); michael@0: virtual std::vector getCallServers(); michael@0: }; michael@0: }; michael@0: michael@0: #endif