CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
data_table_collection.h
1
2#pragma once
3
4#include <system/object.h>
5
6namespace System {
7
8class String;
9
10namespace Data {
11
12class DataTable;
13
18class ASPOSECPP_SHARED_CLASS DataTableCollection : public System::Object
19{
21 RTTI_INFO(System::Data::DataTableCollection, ::System::BaseTypesInfo<System::Object>)
22
23public:
27 ASPOSECPP_SHARED_API System::SharedPtr<DataTable> idx_get(const System::String& name);
28};
29
30}
31}
Collection of data tables. Objects of this class should only be allocated using System::MakeObject() ...
Definition: data_table_collection.h:19
System::SharedPtr< DataTable > idx_get(const System::String &name)
RTTI information.
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