// 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 #include #include namespace build2 { namespace build { namespace script { struct token_type: build2::script::token_type { using base_type = build2::script::token_type; // No build script-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&, bool); } } } #endif // LIBBUILD2_BUILD_SCRIPT_TOKEN_HXX