aboutsummaryrefslogtreecommitdiff
path: root/build2/dump.hxx
blob: 74ecbe7d88df3d1eb98cc3c4db1bc79b1e10d5f6 (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
// file      : build2/dump.hxx -*- C++ -*-
// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BUILD2_DUMP_HXX
#define BUILD2_DUMP_HXX

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

namespace build2
{
  class scope;
  class target;

  // Dump the build state to diag_stream.
  //
  void
  dump ();

  void
  dump (const scope&, const char* ind = "");

  void
  dump (const target&, const char* ind = "");
}

#endif // BUILD2_DUMP_HXX