// file : build2/test/script/runner -*- C++ -*- // copyright : Copyright (c) 2014-2016 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #ifndef BUILD2_TEST_SCRIPT_RUNNER #define BUILD2_TEST_SCRIPT_RUNNER #include #include #include namespace build2 { namespace test { namespace script { class runner { public: virtual void run (const command&) = 0; }; class concurrent_runner: public runner { public: virtual void run (const command&) override; }; } } } #endif // BUILD2_TEST_SCRIPT_RUNNER