EHM DAL 0.2.5
Data abstraction layer for Eastside Hockey Manager
Loading...
Searching...
No Matches
start_date.h
1#pragma once
2
3// Qt headers
4#include <QtGlobal>
5
6namespace ehm_dal::tools::start_date {
7// --- State date manager --- //
13{
14public:
15 StartDate();
16
17 // Get data
18 qint32 year() const;
19
20 // Set data
21 bool setYear(const qint32 start_year);
22};
23} // namespace ehm_dal::tools::start_date
The StartDate class manages the database start date and provides and easy way to get and set the data...
Definition: start_date.h:13