1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/media/webrtc/signaling/src/softphonewrapper/CC_SIPCCFeatureInfo.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,36 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +#ifndef _CC_SIPCC_FEATUREINFO_H 1.9 +#define _CC_SIPCC_FEATUREINFO_H 1.10 + 1.11 +#include "CC_FeatureInfo.h" 1.12 + 1.13 +#include "common/Wrapper.h" 1.14 + 1.15 +namespace CSF 1.16 +{ 1.17 + DECLARE_NS_PTR(CC_SIPCCFeatureInfo); 1.18 + class CC_SIPCCFeatureInfo : public CC_FeatureInfo 1.19 + { 1.20 + private: 1.21 + cc_featureinfo_ref_t featureinfo_ref; 1.22 + CC_SIPCCFeatureInfo (cc_featureinfo_ref_t aFeatureInfo); 1.23 + CSF_DECLARE_WRAP(CC_SIPCCFeatureInfo, cc_featureinfo_ref_t); 1.24 + 1.25 + public: 1.26 + ~CC_SIPCCFeatureInfo(); 1.27 + 1.28 + public: 1.29 + virtual cc_int32_t getButton(); 1.30 + virtual cc_int32_t getFeatureID(); 1.31 + virtual std::string getDisplayName(); 1.32 + virtual std::string getSpeedDialNumber(); 1.33 + virtual std::string getContact(); 1.34 + virtual std::string getRetrievalPrefix(); 1.35 + virtual cc_int32_t getFeatureOptionMask(); 1.36 + }; 1.37 +}; 1.38 + 1.39 +#endif