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