|
1 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
4 |
|
5 #ifndef _CC_SIPCC_FEATUREINFO_H |
|
6 #define _CC_SIPCC_FEATUREINFO_H |
|
7 |
|
8 #include "CC_FeatureInfo.h" |
|
9 |
|
10 #include "common/Wrapper.h" |
|
11 |
|
12 namespace CSF |
|
13 { |
|
14 DECLARE_NS_PTR(CC_SIPCCFeatureInfo); |
|
15 class CC_SIPCCFeatureInfo : public CC_FeatureInfo |
|
16 { |
|
17 private: |
|
18 cc_featureinfo_ref_t featureinfo_ref; |
|
19 CC_SIPCCFeatureInfo (cc_featureinfo_ref_t aFeatureInfo); |
|
20 CSF_DECLARE_WRAP(CC_SIPCCFeatureInfo, cc_featureinfo_ref_t); |
|
21 |
|
22 public: |
|
23 ~CC_SIPCCFeatureInfo(); |
|
24 |
|
25 public: |
|
26 virtual cc_int32_t getButton(); |
|
27 virtual cc_int32_t getFeatureID(); |
|
28 virtual std::string getDisplayName(); |
|
29 virtual std::string getSpeedDialNumber(); |
|
30 virtual std::string getContact(); |
|
31 virtual std::string getRetrievalPrefix(); |
|
32 virtual cc_int32_t getFeatureOptionMask(); |
|
33 }; |
|
34 }; |
|
35 |
|
36 #endif |