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

#ifndef BUILD_TYPES
#define BUILD_TYPES

#include <vector>

#include <build/path>

namespace build
{
  // Commonly-used types.
  //

  typedef std::vector<path> paths;
  typedef std::vector<dir_path> dir_paths;
}

#endif // BUILD_TYPES