Add code versioning for "SettingInfo TC"
[platform/framework/native/appfw.git] / src / system / FSys_SystemClient.h
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Apache License, Version 2.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 /**
18  * @file                FSys_SystemClient.h
19  * @brief               This is the header file for _SystemClient class.
20  */
21
22 #ifndef _FSYSTEM_INTERNAL_SYSTEM_CLIENT_H_
23 #define _FSYSTEM_INTERNAL_SYSTEM_CLIENT_H_
24
25 #include <FIo_IpcClient.h>
26
27 #include <FBaseColArrayList.h>
28 #include <FBaseObject.h>
29 #include <FBaseString.h>
30 #include <FBaseInteger.h>
31 #include <FSys_ICommunicationDispatcherListener.h>
32
33 namespace Tizen { namespace System
34 {
35
36 class _SystemClient
37         : public Tizen::Base::Object
38         , public Tizen::System::_ICommunicationDispatcherListener
39 {
40 private:
41         _SystemClient(void);
42         virtual ~_SystemClient(void);
43
44 public:
45         result GetValue(const Tizen::Base::String& key, bool& value);
46         result GetValue(const Tizen::Base::String& key, int& value);
47         result GetValue(const Tizen::Base::String& key, Tizen::Base::String& value);
48         static _SystemClient* GetInstance(void);
49
50 private:
51         void OnDataReceived(const Tizen::Base::Collection::ArrayList& data);
52         result ConvertResultCode(Tizen::Base::String code);
53 private:
54         Tizen::Io::_IpcClient*  __pIpcClient;   
55         static _SystemClient*   __pSystemClient;
56 };
57
58 } } // Tizen::System
59
60 #endif //_FSYSTEM_INTERNAL_SYSTEM_CLIENT_H_