xtd 0.2.0
Loading...
Searching...
No Matches
enumeration.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "raw_type.hpp"
6#include <concepts>
7
9namespace xtd {
10 // Since Doxygen does not work properly with the C++ concept, the documentation for this concept is declared in xtd/enumeration_.hpp
11 template<typename type_t>
12 concept enumeration =
13 std::is_enum_v<xtd::raw_type<type_t>>;
14}
Definition enumeration.hpp:12
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Contains xtd::raw_type alias.