xtd 0.2.0
enum_collection.h
Go to the documentation of this file.
1 #pragma once
5 #include "ustring.h"
6 
8 namespace xtd {
18  template<typename enum_t>
19  using enum_collection = std::vector<std::pair<enum_t, xtd::ustring>>;
20 }
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
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
Contains xtd::ustring class.