CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
data_relation_collection.h
1
2#pragma once
3
4#include <system/object.h>
5#include <system/collections/ienumerator.h>
6
7namespace System {
8namespace Data {
9
10class DataRelation;
11
16class ASPOSECPP_SHARED_CLASS DataRelationCollection : public System::Object
17{
19 RTTI_INFO(System::Data::DataRelationCollection, ::System::BaseTypesInfo<System::Object>)
20
21public:
25protected:
27 ASPOSECPP_SHARED_API ~DataRelationCollection() override;
28};
29
30}
31}
Collection of dependencies between tables. Objects of this class should only be allocated using Syste...
Definition: data_relation_collection.h:17
System::SharedPtr< System::Collections::Generic::IEnumerator< System::SharedPtr< System::Data::DataRelation > > > GetEnumerator()
RTTI information.
~DataRelationCollection() override
Destructor.
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