DotNetDupe 4.0.6
C++17/20 Implementation of the .NET Base Class Library (BCL)
Loading...
Searching...
No Matches
DatabaseInternal.h
Go to the documentation of this file.
1#pragma once
2#include <string>
3#include <vector>
4#include <unordered_map>
5
6namespace DotNetDupe {
7 namespace System {
8 namespace Data {
9 namespace Internal {
10
11 struct Row {
12 std::vector<std::string> Values;
13 };
14
15 struct Table {
16 std::vector<std::string> Columns;
17 std::vector<Row> Rows;
18 };
19
20 }
21 }
22 }
23}
Represents an internal data row consisting of a list of column values.
Collections::Generic::List< String > Values
Ordered list of column values as strings.
Represents an internal in-memory relational table.
Collections::Generic::List< Row > Rows
List of data rows contained within the table.
Collections::Generic::List< String > Columns
Ordered list of column header names.