Fix the boiler plate codes
[framework/osp/social.git] / src / FScl_AccountManagerImpl.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_AccountManagerImpl.h
18  * @brief       This is the header file for the %_AccountManagerImpl class.
19  *
20  * This header file contains the declarations of the %_AccountManagerImpl class.
21  */
22
23 #ifndef _FSCL_INTERNAL_ACCOUNT_MANAGER_IMPL_H_
24 #define _FSCL_INTERNAL_ACCOUNT_MANAGER_IMPL_H_
25
26 #include <FBaseObject.h>
27 #include <FBaseResult.h>
28 #include <FSclTypes.h>
29
30 namespace Tizen { namespace Social
31 {
32 class Account;
33 class AccountManager;
34
35 class _AccountManagerImpl
36         : public Tizen::Base::Object
37 {
38 public:
39         _AccountManagerImpl(void);
40
41         virtual ~_AccountManagerImpl(void);
42
43         result Construct(void);
44
45         result AddAccount(Account& account);
46
47         result RemoveAccount(AccountId accountId);
48
49         result UpdateAccount(const Account& account);
50
51         static _AccountManagerImpl* GetInstance(AccountManager& accountManager);
52
53         static const _AccountManagerImpl* GetInstance(const AccountManager& accountManager);
54
55 private:
56         _AccountManagerImpl& operator =(const _AccountManagerImpl& rhs);
57         _AccountManagerImpl(const _AccountManagerImpl& rhs);
58
59 };      // _AccountManagerImpl
60
61 }}  // Tizen::Social
62
63 #endif //_FSCL_INTERNAL_ACCOUNT_MANAGER_IMPL_H_