media/webrtc/signaling/src/softphonewrapper/CC_SIPCCCallServerInfo.h

branch
TOR_BUG_9701
changeset 10
ac0c01689b40
equal deleted inserted replaced
-1:000000000000 0:f1d5bc9fd8f2
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_CALLSERVERINFO_H
6 #define _CC_SIPCC_CALLSERVERINFO_H
7
8 #include "CC_CallServerInfo.h"
9
10 #include "common/Wrapper.h"
11
12 namespace CSF
13 {
14 DECLARE_NS_PTR(CC_SIPCCCallServerInfo);
15 class CC_SIPCCCallServerInfo : public CC_CallServerInfo
16 {
17 private:
18 cc_callserver_ref_t callserverinfo_ref;
19
20 CC_SIPCCCallServerInfo (cc_callserver_ref_t aCallServerInfo);
21
22 CSF_DECLARE_WRAP(CC_SIPCCCallServerInfo, cc_callserver_ref_t);
23
24 public:
25 ~CC_SIPCCCallServerInfo();
26
27 public:
28 virtual std::string getCallServerName();
29 virtual cc_cucm_mode_t getCallServerMode();
30 virtual cc_ccm_status_t getCallServerStatus();
31 };
32 };
33
34 #endif

mercurial