EHM DAL 0.2.3
Data abstraction layer for Eastside Hockey Manager
Loading...
Searching...
No Matches
club_history_columns.h
1#pragma once
2
3// Application headers
4#include "include/column_data/column_data.h"
5
6namespace ehm_dal::column_data {
7// --- Club history column data --- //
9{
10public:
11 // Constructor
13
14 enum ENUM_COLUMNS {
16 Comp,
17 Season,
18 Position,
19 GamesPlayed,
20 Won,
21 Tied,
22 Lost,
23 OvertimeWins,
24 OvertimeLosses,
25 ShootoutWins,
26 ShootoutLosses,
27 GoalsScored,
28 GoalsAgainst,
29 Points,
30 COLUMN_COUNT
31 };
32};
33} // namespace ehm_dal::column_data
Definition: club_history_columns.h:9
The ColumnData class represents a container of ehm_dal::column_data::Column and attributes relating t...
Definition: column_data.h:18
@ FirstIdOnlyDerivedColumnIndex
Definition: column_data.h:54