EHM DAL 0.2.3
Data abstraction layer for Eastside Hockey Manager
Loading...
Searching...
No Matches
currency_columns.h
1#pragma once
2
3// Application headers
4#include "include/column_data/column_data.h"
5
6namespace ehm_dal::column_data {
7// --- Currency column data --- //
12{
13public:
14 // Constructor
16
17 enum ENUM_COLUMNS {
19 NameShort,
20 ThreeLetterCode,
21 Symbol,
22 Nation,
23 ExchangeRate,
24 ApproxExchangeRate,
25 VeryApproxExchangeRate,
26 GenderName,
27 GenderNameShort,
28 COLUMN_COUNT
29 };
30};
31} // namespace ehm_dal::column_data
The ColumnData class represents a container of ehm_dal::column_data::Column and attributes relating t...
Definition: column_data.h:18
@ FirstStandardDerivedColumnIndex
Definition: column_data.h:53
The CurrencyColumns class sets out the column indexes for the ehm_dal::schema::Currency schema.
Definition: currency_columns.h:12