EHM DAL 0.2.5
Data abstraction layer for Eastside Hockey Manager
Loading...
Searching...
No Matches
day_of_year.h
1#pragma once
2
3// Application headers
4#include "include/data_types/data_type.h"
5
6namespace ehm_dal::data_types {
10class DayOfYear : public DataType<qint16>
11{
12public:
13 DayOfYear(const qint16 day_of_year = 0);
14 // TODO implement string to number (and vice versa) functions
15};
16} // namespace ehm_dal::data_types
The DataType class is a template class for all C++ integral and floating point data types.
Definition: data_type.h:21
The DayOfYear class represents the day of a year (0 = 1 Jan, 1 = 2 Jan, etc).
Definition: day_of_year.h:11
namespace ehm_dal::data_types
Definition: attribute.h:6