xtd 0.2.0
Loading...
Searching...
No Matches
month_of_year.h
Go to the documentation of this file.
1
4#pragma once
5#include "enum.h"
6
8namespace xtd {
21 enum class month_of_year {
23 january = 1,
27 march,
29 april,
31 may,
33 june,
35 july,
37 august,
41 october,
46 };
47}
48
50template<> struct xtd::enum_register<xtd::month_of_year> {
52};
Contains enum_ and enum_ut_ keywords.
month_of_year
Specifies the month of the year.
Definition month_of_year.h:21
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
@ september
Indicates september.
@ june
Indicates june.
@ july
Indicates july.
@ april
Indicates april.
@ march
Indicates march.
@ january
Indicates january.
@ november
Indicates november.
@ august
Indicates august.
@ february
Indicates february.
@ may
Indicates may.
@ october
Indicates october.
@ december
Indicates december.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Provides the registration struct for enumerations.
Definition enum_register.h:36