EHM DAL 0.2.3
Data abstraction layer for Eastside Hockey Manager
Loading...
Searching...
No Matches
official_columns.h
1#pragma once
2
3
4// Application headers
5#include "include/database/column_data/private/person_columns.h"
6
7namespace ehm_dal::column_data {
8// --- Official column data --- //
13{
14public:
16
17 enum COLUMN_INDEXES {
18 ClubCompetition = FirstPersonDerivedColumnIndex,
19 CurrentAbility,
20 PotentialAbility,
21 Reputation,
22 AllowingInterference,
23 AllowingRoughness,
24 Discipline,
25 ImportantMatches,
26 Pressure,
27 Refereeing,
28 SkatingLine,
29 COLUMN_COUNT
30 };
31};
32} // namespace ehm_dal::column_data
33
The OfficialColumns class sets out the column indexes for the ehm_dal::schema::Official schema.
Definition: official_columns.h:13
Definition: person_columns.h:10