Modify the spec file for secure log
[framework/osp/social.git] / src / FScl_AccountManagerUtil.h
1 //
2 // Copyright (c) 2013 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  * @file        FScl_AccountManagerUtil.h
18  * @brief       This is the header file for the _AccountManagerUtil class.
19  *
20  * This header file contains the declarations of the _AccountManagerUtil class.
21  */
22
23 #ifndef _FSCL_INTERNAL_ACCOUNT_MANAGER_UTIL_H_
24 #define _FSCL_INTERNAL_ACCOUNT_MANAGER_UTIL_H_
25
26 #include <account.h>
27 #include <account-types.h>
28 #include <FBaseDataType.h>
29
30 namespace Tizen { namespace Social
31 {
32
33 struct _CharDeleter
34 {
35     void operator()(char* pChar)
36     {
37         free(pChar);
38     }
39 };
40
41 class Account;
42 class AccountProvider;
43
44 class _AccountManagerUtil
45 {
46 public:
47         static account_h CreateAccountHandleN(const Account account);
48
49         static Account* ConvertAccountHandleToAccountN(account_h accountHandle);
50         static AccountProvider* ConvertAccountTypeHandleToAccountProviderN(account_type_h accountTypeHandle);
51
52 };      // _AccountManagerUtil
53
54 }}      // Tizen::Social
55
56 #endif //_FSCL_INTERNAL_ACCOUNT_MANAGER_UTIL_H_