Merge "Update deprecated libprivilege-control API functions." into tizen
[platform/framework/native/appfw.git] / src / app / FApp_ConditionManagerProxy.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        FApp_ConditionManagerProxy.h
19  * @brief       This is the header file of the _ConditionManagerProxy class.
20  */
21
22 #ifndef _FAPP_INTERNAL_CONDITION_MANAGER_PROXY_H_
23 #define _FAPP_INTERNAL_CONDITION_MANAGER_PROXY_H_
24
25 #include <FBaseObject.h>
26 #include <FBaseString.h>
27 #include <FAppAppManager.h>
28
29 namespace Tizen { namespace Io { class _IpcClient; } }
30
31 namespace Tizen { namespace App
32 {
33
34 /**
35  * @class        _ConditionManagerProxy
36  * @brief
37  * @since 2.1
38  */
39 class _ConditionManagerProxy
40 {
41 public:
42         _ConditionManagerProxy(void);
43
44         ~_ConditionManagerProxy(void);
45
46         result Construct(void);
47
48         result RegisterAppLaunch(const AppId& appId, const Tizen::Base::String& condition, const Tizen::Base::Collection::IList* pArguments, AppManager::LaunchOption option);
49
50         result UnregisterAppLaunch(const AppId& appId, const Tizen::Base::String* pCondition);
51
52         bool IsAppLaunchRegistered(const AppId& appId, const Tizen::Base::String* pCondition = null) const;
53
54 private:
55         _ConditionManagerProxy(const _ConditionManagerProxy& rhs);
56
57         _ConditionManagerProxy& operator =(const _ConditionManagerProxy& rhs);
58
59 private:
60         Tizen::Io::_IpcClient* __pIpcClient;
61
62 }; // _ConditionManagerProxy
63
64 } } // Tizen::App
65
66 #endif // _FAPP_INTERNAL_CONDITION_MANAGER_PROXY_H_