xtd 0.2.0
month_of_year.h
Go to the documentation of this file.
1 #pragma once
5 #include "enum.h"
6 
8 namespace xtd {
21  enum class month_of_year {
23  january = 1,
25  february,
27  march,
29  april,
31  may,
33  june,
35  july,
37  august,
39  september,
41  october,
43  november,
45  december
46  };
47 }
48 
50 template<> struct xtd::enum_register<xtd::month_of_year> {
52 };
Indicates september.
Indicates october.
month_of_year
Specifies the month of the year.
Definition: month_of_year.h:21
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
Indicates january.
Indicates august.
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition: enum_collection.h:19
Indicates march.
Indicates november.
Contains enum_ and enum_ut_ keywords.
Indicates july.
Indicates december.
Indicates february.
Indicates april.
Indicates june.
Provides the registration struct for enumerations.
Definition: enum_register.h:36