|
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 #pragma once |
|
6 |
|
7 #include "CC_Common.h" |
|
8 |
|
9 #include <vector> |
|
10 |
|
11 extern "C" |
|
12 { |
|
13 #include "ccapi_types.h" |
|
14 } |
|
15 |
|
16 namespace CSF |
|
17 { |
|
18 class ECC_API CC_CallServerInfo |
|
19 { |
|
20 public: |
|
21 NS_INLINE_DECL_THREADSAFE_REFCOUNTING(CC_CallServerInfo) |
|
22 protected: |
|
23 CC_CallServerInfo() { } |
|
24 |
|
25 public: |
|
26 //Base class needs dtor to be declared as virtual |
|
27 virtual ~CC_CallServerInfo() {}; |
|
28 |
|
29 /** |
|
30 gets call server name |
|
31 |
|
32 @returns name of the call server |
|
33 */ |
|
34 virtual std::string getCallServerName() = 0; |
|
35 |
|
36 /** |
|
37 gets call server mode |
|
38 |
|
39 @returns - mode of the call server |
|
40 */ |
|
41 virtual cc_cucm_mode_t getCallServerMode() = 0; |
|
42 |
|
43 /** |
|
44 gets calls erver name |
|
45 |
|
46 @returns status of the call server |
|
47 */ |
|
48 virtual cc_ccm_status_t getCallServerStatus() = 0; |
|
49 }; |
|
50 }; |