CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
data_table.h
1
2#ifndef _aspose_data_data_table_h_
3#define _aspose_data_data_table_h_
4
5#include <system/object.h>
6#include <system/string.h>
7
8namespace System { namespace Data {
9
10class DataRowCollection;
11class DataColumnCollection;
12class DataSet;
13
18class ASPOSECPP_SHARED_CLASS DataTable : public System::Object
19{
21 RTTI_INFO(System::Data::DataTable, ::System::BaseTypesInfo<System::Object>)
22
23public:
29 ASPOSECPP_SHARED_API System::String get_TableName();
36};
37
38}} // namespace System::Data
39
40#endif // _aspose_data_data_table_h_
Data structured in rows and columns. Objects of this class should only be allocated using System::Mak...
Definition: data_table.h:19
System::SharedPtr< DataRowCollection > get_Rows()
RTTI information.
System::String get_TableName()
Gets table name.
System::SharedPtr< DataColumnCollection > get_Columns()
Gets columns present in the table.
System::SharedPtr< DataSet > get_DataSet()
Gets data set table 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
String class used across the library. Is a substitute for C# System.String when translating code....
Definition: string.h:122
Definition: db_command.h:9