aboutsummaryrefslogtreecommitdiff
path: root/build/variable
blob: caceb2b2cbee6e24ca5af762f182c3a1b56d2f83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// file      : build/variable -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#ifndef BUILD_VARIABLE
#define BUILD_VARIABLE

#include <build/prefix-map>

namespace build
{
  // @@ TODO:
  // - pool names?
  //

  typedef prefix_map<std::string, std::string, '.'> variable_map;
}

#endif // BUILD_VARIABLE