CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
i_data_reader.h
1
2#pragma once
3
4#include <system/object.h>
5#include <data/i_data_record.h>
6
7namespace System {
8namespace Data {
9
14class ASPOSECPP_SHARED_CLASS IDataReader : public System::Data::IDataRecord
15{
17 RTTI_INFO(System::Data::IDataReader, ::System::BaseTypesInfo<System::Data::IDataRecord>)
18
19public:
22 virtual ASPOSECPP_SHARED_API bool Read() = 0;
23};
24
25}
26}
Interface to read consequental data from. Objects of this class should only be allocated using System...
Definition: i_data_reader.h:15
virtual bool Read()=0
RTTI information.
Interface to record with columns. Objects of this class should only be allocated using System::MakeOb...
Definition: i_data_record.h:16
Definition: db_command.h:9