blob: a3b0db9ef1435129c14f40af62ca1d02f1b07604 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// file : build/algorithm -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef BUILD_ALGORITHM
#define BUILD_ALGORITHM
namespace build
{
class target;
class prerequisite;
target&
search (prerequisite&);
bool
match (target&);
}
#endif // BUILD_ALGORITHM
|