From 70317569c6dcd9809ed4a8c425777e653ec6ca08 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 1 May 2017 18:24:31 +0300 Subject: Add hxx extension for headers --- build2/test/script/token.hxx | 65 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 build2/test/script/token.hxx (limited to 'build2/test/script/token.hxx') diff --git a/build2/test/script/token.hxx b/build2/test/script/token.hxx new file mode 100644 index 0000000..0e8a577 --- /dev/null +++ b/build2/test/script/token.hxx @@ -0,0 +1,65 @@ +// file : build2/test/script/token.hxx -*- C++ -*- +// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#ifndef BUILD2_TEST_SCRIPT_TOKEN_HXX +#define BUILD2_TEST_SCRIPT_TOKEN_HXX + +#include +#include + +#include + +namespace build2 +{ + namespace test + { + namespace script + { + struct token_type: build2::token_type + { + using base_type = build2::token_type; + + enum + { + // NOTE: remember to update token_printer()! + + semi = base_type::value_next, // ; + + dot, // . + + plus, // + + minus, // - + + pipe, // | + clean, // &{?!} (modifiers in value) + + in_pass, // <| + in_null, // <- + in_str, // <{:} (modifiers in value) + in_doc, // <<{:} (modifiers in value) + in_file, // <<< + + out_pass, // >| + out_null, // >- + out_trace, // >! + out_merge, // >& + out_str, // >{:~} (modifiers in value) + out_doc, // >>{:~} (modifiers in value) + out_file_cmp, // >>> + out_file_ovr, // >= + out_file_app // >+ + }; + + token_type () = default; + token_type (value_type v): base_type (v) {} + token_type (base_type v): base_type (v) {} + }; + + void + token_printer (ostream&, const token&, bool); + } + } +} + +#endif // BUILD2_TEST_SCRIPT_TOKEN_HXX -- cgit v1.1