// file : build2/version/module.hxx -*- C++ -*- // copyright : Copyright (c) 2014-2017 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #ifndef BUILD2_VERSION_MODULE_HXX #define BUILD2_VERSION_MODULE_HXX #include #include #include #include namespace build2 { namespace version { // The 'depends' values from manifest. // using dependency_constraints = std::map; struct module: module_base { static const string name; butl::standard_version version; dependency_constraints dependencies; module (butl::standard_version v, dependency_constraints d) : version (move (v)), dependencies (move (d)) {} }; } } #endif // BUILD2_VERSION_MODULE_HXX