EHM DAL 0.2.5
Data abstraction layer for Eastside Hockey Manager
Loading...
Searching...
No Matches
abstract_validated_id_table_item.h
1#pragma once
2
3// Application headers
4#include "include/schema/abstract_id_table_item.h"
5
6namespace ehm_dal::schema {
11{
12public:
14 // TODO implement validator
15 // See comments in abstract_validated_uid_table_item.h
16};
17
18} // namespace ehm_dal::schema
The AbstractIdTableItem class represents a row in a Table with an id field.
Definition: abstract_id_table_item.h:26
The AbstractValidatedIdTableItem is an AbstractIdTableItem with a validator.
Definition: abstract_validated_id_table_item.h:11