Dev Essential  1.6.3
Loading...
Searching...
No Matches
requirement.h
Go to the documentation of this file.
1
20
21#ifndef DDL_UTILITY_REQUIREMENT_H_INCLUDED
22#define DDL_UTILITY_REQUIREMENT_H_INCLUDED
23
24#include <stdexcept>
25#include <vector>
26
27namespace ddl {
28namespace utility {
29
33template <typename VersionType>
36 VersionType version = {};
38 std::string item_name = {};
40 std::string reason = {};
41};
42
43} // namespace utility
44} // namespace ddl
45
46#endif // DDL_UTILITY_REQUIREMENT_H_INCLUDED
definition of the utility namespace
Definition ddl.h:66
definition of the ddl namespace
Definition codec.h:21
VersionRequirement to report a Version requirement.
Definition requirement.h:34
std::string reason
Definition requirement.h:40
Version version
Definition requirement.h:36
std::string item_name
Definition requirement.h:38