Merge "Export internal APIs needed by samsung-socil" into tizen_2.1
[framework/osp/social.git] / src / FScl_CalendarbookDbConnector.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_CalendarbookDbConnector.h
18 * @brief        This is the header file for the _CalendarbookDbConnector class.
19 *
20 * This header file contains the declarations of the _CalendarbookDbConnector class.
21 */
22
23 #ifndef _FSCL_INTERNAL_CALENDARBOOK_DB_CONNECTOR_H_
24 #define _FSCL_INTERNAL_CALENDARBOOK_DB_CONNECTOR_H_
25
26 namespace Tizen { namespace Base { namespace Runtime
27 {
28 class Mutex;
29 }}}
30
31 namespace Tizen { namespace Social
32 {
33
34 class _CalendarbookDbConnector
35 {
36 public:
37         static result Connect(void);
38         static result Disconnect(void);
39
40 private:
41         _CalendarbookDbConnector(void);
42         ~_CalendarbookDbConnector(void);
43
44         static void InitCalendarbookDbConnector(void);
45
46 private:
47         static int __connectingCount;
48         static Tizen::Base::Runtime::Mutex __mutex;
49         static bool __isInit;
50 };      // _CalendarbookDbConnector
51
52 }}  // Tizen::Social
53
54 #endif //_FSCL_INTERNAL_CALENDARBOOK_DB_CONNECTOR_H_