aboutsummaryrefslogtreecommitdiff
path: root/build2/version/module
blob: d5c1f01e840201899d99f38fa7b6f4f270e63b12 (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
// file      : build2/version/module -*- C++ -*-
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BUILD2_VERSION_MODULE
#define BUILD2_VERSION_MODULE

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

#include <butl/standard-version>

#include <build2/module>

namespace build2
{
  namespace version
  {
    struct module: module_base
    {
      static const string name;

      butl::standard_version version;
      bool version_patched;           // True if snapshot was patched in.

      module (butl::standard_version v, bool vp)
          : version (move (v)), version_patched (vp) {}
    };
  }
}

#endif // BUILD2_VERSION_MODULE