// file : bbot/agent -*- C++ -*- // copyright : Copyright (c) 2014-2017 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #ifndef BBOT_AGENT #define BBOT_AGENT #include #include #include namespace bbot { extern agent_options ops; extern const string bs_prot; // Bootstrap protocol version. extern string tc_name; // Toolchain name. extern string tc_num; // Toolchain number. extern string tc_id; // Toolchain id. } #endif // BBOT_AGENT