diff options
Diffstat (limited to 'build2/test/script/script.ixx')
-rw-r--r-- | build2/test/script/script.ixx | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/build2/test/script/script.ixx b/build2/test/script/script.ixx new file mode 100644 index 0000000..2e215da --- /dev/null +++ b/build2/test/script/script.ixx @@ -0,0 +1,39 @@ +// file : build2/test/script/script.ixx -*- C++ -*- +// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +namespace build2 +{ + namespace test + { + namespace script + { + inline command_to_stream + operator&= (command_to_stream& x, command_to_stream y) + { + return x = static_cast<command_to_stream> ( + static_cast<uint16_t> (x) & static_cast<uint16_t> (y)); + } + + inline command_to_stream + operator|= (command_to_stream& x, command_to_stream y) + { + return x = static_cast<command_to_stream> ( + static_cast<uint16_t> (x) | static_cast<uint16_t> (y)); + } + + inline command_to_stream + operator& (command_to_stream x, command_to_stream y) {return x &= y;} + + inline command_to_stream + operator| (command_to_stream x, command_to_stream y) {return x |= y;} + + inline ostream& + operator<< (ostream& o, const command& c) + { + to_stream (o, c, command_to_stream::all); + return o; + } + } + } +} |