CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
data_set.h
1
2#pragma once
3
4#include <system/object.h>
5
6namespace System {
7namespace Data {
8
9class DataTableCollection;
10class DataRelationCollection;
11
16class ASPOSECPP_SHARED_CLASS DataSet : public System::Object
17{
19 RTTI_INFO(System::Data::DataSet, ::System::BaseTypesInfo<System::Object>)
20
21public:
28};
29
30}
31}
Set of data which is stored in tables having some relations between them. Objects of this class shoul...
Definition: data_set.h:17
System::SharedPtr< DataTableCollection > get_Tables()
RTTI information.
System::SharedPtr< DataRelationCollection > get_Relations()
Gets relations between tables in the data set.
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