blob: 954b4127982371eb2de7739a2531a534b842aa5d (
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
33
34
35
36
|
// file : libbuild2/build/script/token.hxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#ifndef LIBBUILD2_BUILD_SCRIPT_TOKEN_HXX
#define LIBBUILD2_BUILD_SCRIPT_TOKEN_HXX
#include <libbuild2/types.hxx>
#include <libbuild2/utility.hxx>
#include <libbuild2/script/token.hxx>
namespace build2
{
namespace build
{
namespace script
{
struct token_type: build2::script::token_type
{
using base_type = build2::script::token_type;
// No buildscript-specific tokens so far.
//
token_type () = default;
token_type (value_type v): base_type (v) {}
token_type (build2::token_type v): base_type (v) {}
};
void
token_printer (ostream&, const token&, print_mode);
}
}
}
#endif // LIBBUILD2_BUILD_SCRIPT_TOKEN_HXX
|