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_FEATUREINFO_H michael@0: #define _CC_SIPCC_FEATUREINFO_H michael@0: michael@0: #include "CC_FeatureInfo.h" michael@0: michael@0: #include "common/Wrapper.h" michael@0: michael@0: namespace CSF michael@0: { michael@0: DECLARE_NS_PTR(CC_SIPCCFeatureInfo); michael@0: class CC_SIPCCFeatureInfo : public CC_FeatureInfo michael@0: { michael@0: private: michael@0: cc_featureinfo_ref_t featureinfo_ref; michael@0: CC_SIPCCFeatureInfo (cc_featureinfo_ref_t aFeatureInfo); michael@0: CSF_DECLARE_WRAP(CC_SIPCCFeatureInfo, cc_featureinfo_ref_t); michael@0: michael@0: public: michael@0: ~CC_SIPCCFeatureInfo(); michael@0: michael@0: public: michael@0: virtual cc_int32_t getButton(); michael@0: virtual cc_int32_t getFeatureID(); michael@0: virtual std::string getDisplayName(); michael@0: virtual std::string getSpeedDialNumber(); michael@0: virtual std::string getContact(); michael@0: virtual std::string getRetrievalPrefix(); michael@0: virtual cc_int32_t getFeatureOptionMask(); michael@0: }; michael@0: }; michael@0: michael@0: #endif