Merge "Export internal APIs needed by samsung-socil" into tizen_2.1
[framework/osp/social.git] / src / FScl_ContactDbConnector.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  * @file                FScl_ContactDbConnector.h
18  * @brief               This is the header file for the _ContactDbConnector class.
19  *
20  * This header file contains the declarations of the _ContactDbConnector class.
21  */
22 #ifndef _FSCL_INTERNAL_CONTACT_DB_CONNECTOR_H_
23 #define _FSCL_INTERNAL_CONTACT_DB_CONNECTOR_H_
24
25 #include <unique_ptr.h>
26 #include <contacts.h>
27
28 namespace Tizen { namespace Social
29 {
30
31 class _ContactDbConnector
32 {
33 public:
34
35         static _ContactDbConnector* GetInstance(void);
36
37         result Connect(void);
38
39         result Disconnect(void);
40
41         static result EnsureDbConnection(void);
42
43 private:
44         _ContactDbConnector(void);
45
46         ~_ContactDbConnector(void);
47
48         static void InitContactDbConnector(void);
49         static void DestroyContactDbConnector(void);
50
51 private:
52         static _ContactDbConnector* __pInstance;
53         static bool __isConnected;
54         friend class std::default_delete< _ContactDbConnector >;
55 };
56
57 }} // Tizen::Social
58
59 #endif //_FSCL_INTERNAL_CONTACT_DB_CONNECTOR_H_