CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
data_view.h
1
2#ifndef _aspose_data_data_view_h_
3#define _aspose_data_data_view_h_
4
5#include <system/object.h>
6#include <cstdint>
7
8namespace System { namespace Data {
9
10class DataRowView;
11class DataTable;
12
17class ASPOSECPP_SHARED_CLASS DataView : public System::Object
18{
20 RTTI_INFO(System::Data::DataView, ::System::BaseTypesInfo<System::Object>)
21
22public:
25 ASPOSECPP_SHARED_API int32_t get_Count();
29 ASPOSECPP_SHARED_API System::SharedPtr<System::Data::DataRowView> idx_get(const int32_t recordIndex);
33};
34
35}} // namespace System::Data
36
37#endif // _aspose_data_data_view_h_
View working on table. Objects of this class should only be allocated using System::MakeObject() func...
Definition: data_view.h:18
System::SharedPtr< System::Data::DataRowView > idx_get(const int32_t recordIndex)
Gets row views.
int32_t get_Count()
RTTI information.
System::SharedPtr< System::Data::DataTable > get_Table()
Gets table the view belongs to.
Base class that enables using methods available for System.Object class in C#. All non-trivial classe...
Definition: object.h:62
Pointer class to wrap types being allocated on heap. Use it to manage memory for classes inheriting O...
Definition: smart_ptr.h:180
Definition: db_command.h:9