update for beta universally
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Account / AccountFactory.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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 /**
19  * @file        ICalendarFactory.h
20  * @author      Lukasz Marek (l.marek@samsung.com)
21  * @version     0.1
22  */
23
24 #ifndef _ABSTRACT_LAYER_ACCOUNT_FACTORY_H_
25 #define _ABSTRACT_LAYER_ACCOUNT_FACTORY_H_
26
27 #include "IAccountManager.h"
28 #include "IAccountService.h"
29 #include <dpl/shared_ptr.h>
30
31 namespace TizenApis {
32 namespace Api {
33 namespace Account{
34
35         
36 class AccountFactory : private DPL::Noncopyable
37 {
38   private:
39     AccountFactory()
40     {
41     }
42   public:
43     static AccountFactory& getInstance();
44     IAccountManagerPtr    createAccountManagerObject();
45 //    IAccountServicePtr           createAccountObject();
46 };
47 }
48 }
49 }
50
51 #endif /* WRTPLUGINSCAMERAFACTORY_H_ */