Merge "Fix memory leaks in Locales" into tizen_2.1
[platform/framework/native/appfw.git] / src / io / inc / FIo_DataSetImpl.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file        FIoDataSet.h
20  * @brief   This is the header file for the %_DataSetImpl class.
21  *
22  * This header file contains the declarations of the %_DataSetImpl class.
23  */
24
25 #ifndef _FIO_INTERNAL_DATASET_IMPL_H_
26 #define _FIO_INTERNAL_DATASET_IMPL_H_
27
28 #include <FIoDataSet.h>
29 #include <FBaseObject.h>
30 #include <FBaseColArrayList.h>
31 #include <FBaseColLinkedList.h>
32 #include <FOspConfig.h>
33
34 namespace Tizen { namespace Io
35 {
36
37 class DataRow;
38 class DataSetEnumerator;
39
40 class _DataSetImpl
41         : public Tizen::Base::Object
42 {
43
44 public:
45         _DataSetImpl(void);
46
47         virtual ~_DataSetImpl(void);
48
49         result Construct(const Tizen::Base::Collection::IList& columnNames);
50
51         DataRow* CreateDataRowN(void);
52
53         DataSetEnumerator* GetDataSetEnumeratorN(void);
54
55         DataSet* CloneN(void) const;
56
57         virtual bool Equals(const Tizen::Base::Object& obj) const;
58
59         virtual int GetHashCode(void) const;
60
61         static _DataSetImpl* GetInstance(DataSet& dataSet);
62
63         static const _DataSetImpl* GetInstance(const DataSet& dataSet);
64
65 private:
66         _DataSetImpl(_DataSetImpl& dataSetImpl);
67
68         _DataSetImpl& operator =(const _DataSetImpl& dataSetImpl);
69
70         Tizen::Base::Collection::LinkedList* __pDataSet;
71         Tizen::Base::Collection::ArrayList* __pColumnList;
72         Tizen::Base::Collection::ArrayList* __pColumnTypeList;
73
74         int __columnCount;
75         int __rowCount;
76
77         Tizen::Base::Collection::LinkedList __enumImplList;
78         Tizen::Base::Collection::LinkedList __rowImplList;
79 }; // _DataSetImpl
80
81 }} // Tizen::Io
82
83 #endif //_FIO_INTERNAL_DATASET_IMPL_H_
84