Merge "Revert "Fix N_SE-46938 for tz list."" into devel_3.0_main
[platform/framework/native/appfw.git] / src / io / inc / FIo_NormalRegistry.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 /**
18  * @file        FIo_NormalRegistry.h
19  * @brief       This is the header file for the %_NormalRegistry class.
20  */
21
22 #ifndef _FIO_INTERNAL_NORMALREGISTRY_H_
23 #define _FIO_INTERNAL_NORMALREGISTRY_H_
24
25 #include <FBaseUuId.h>
26 #include <FBaseString.h>
27 #include <FBaseByteBuffer.h>
28 #include <FBaseColArrayList.h>
29 #include <FBaseColLinkedList.h>
30 #include <FBaseColHashMap.h>
31 #include <FBaseColIMap.h>
32 #include <FBaseResult.h>
33
34 #include <FIo_RegistryImpl.h>
35 #include <FIo_RegistryCore.h>
36
37 namespace Tizen { namespace Io
38 {
39
40 class File;
41 class _FileImpl;
42 class _SecureRegistry;
43
44 class _NormalRegistry
45         : public _RegistryCore
46 {
47
48 public:
49         _NormalRegistry(void);
50
51         virtual ~_NormalRegistry(void);
52
53         result Construct(const Tizen::Base::String& regPath, const char* pOpenMode);
54
55         result Flush(void);
56
57 private:
58         _NormalRegistry(const _NormalRegistry& rhs);
59
60         _NormalRegistry& operator =(const _NormalRegistry& rhs);
61
62         friend class Registry;
63         friend class _SecureRegistry;
64
65 }; // _NormalRegistry
66
67 }} // Tizen::Io
68
69 #endif //_FIO_INTERNAL_NORMALREGISTRY_H_
70