aboutsummaryrefslogtreecommitdiff
path: root/bbot/agent
blob: c333fe5d7218d456452a0692640059b2e4a9ccac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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 <bbot/types>
#include <bbot/utility>

#include <bbot/agent-options>

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