2 // Open Service Platform
3 // Copyright (c) 2013 Samsung Electronics Co., Ltd.
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
9 // http://www.apache.org/licenses/LICENSE-2.0
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.
20 * @brief This is the header file for the %_DataSetImpl class.
22 * This header file contains the declarations of the %_DataSetImpl class.
25 #ifndef _FIO_INTERNAL_DATASET_IMPL_H_
26 #define _FIO_INTERNAL_DATASET_IMPL_H_
28 #include <FIoDataSet.h>
29 #include <FBaseObject.h>
30 #include <FBaseColArrayList.h>
31 #include <FBaseColLinkedList.h>
32 #include <FOspConfig.h>
34 namespace Tizen { namespace Io
38 class DataSetEnumerator;
41 : public Tizen::Base::Object
47 virtual ~_DataSetImpl(void);
49 result Construct(const Tizen::Base::Collection::IList& columnNames);
51 DataRow* CreateDataRowN(void);
53 DataSetEnumerator* GetDataSetEnumeratorN(void);
55 DataSet* CloneN(void) const;
57 virtual bool Equals(const Tizen::Base::Object& obj) const;
59 virtual int GetHashCode(void) const;
61 static _DataSetImpl* GetInstance(DataSet& dataSet);
63 static const _DataSetImpl* GetInstance(const DataSet& dataSet);
66 _DataSetImpl(_DataSetImpl& dataSetImpl);
68 _DataSetImpl& operator =(const _DataSetImpl& dataSetImpl);
70 Tizen::Base::Collection::LinkedList* __pDataSet;
71 Tizen::Base::Collection::ArrayList* __pColumnList;
72 Tizen::Base::Collection::ArrayList* __pColumnTypeList;
80 #endif //_FIO_INTERNAL_DATASET_IMPL_H_