aboutsummaryrefslogtreecommitdiff
path: root/build2/version/module.hxx
blob: 45b1a4732c15b78642f2676fba0fb27c1d69de39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// 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 <map>

#include <build2/types.hxx>
#include <build2/utility.hxx>

#include <build2/module.hxx>

namespace build2
{
  namespace version
  {
    // The 'depends' values from manifest.
    //
    using dependency_constraints = std::map<string, string>;

    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