aboutsummaryrefslogtreecommitdiff
path: root/bbot/agent
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-04-10 13:16:11 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-04-10 13:16:11 +0200
commit810df40a0625835ad17a0a5bf3232a8d1a68e680 (patch)
tree1dc320fd821ce30a0a037b7fae151e1f027d0bbd /bbot/agent
parent36e0c88e7a3912c8a2e6594841172adb9c14525b (diff)
Implement vm startup and shutdown
Diffstat (limited to 'bbot/agent')
-rw-r--r--bbot/agent24
1 files changed, 24 insertions, 0 deletions
diff --git a/bbot/agent b/bbot/agent
new file mode 100644
index 0000000..c333fe5
--- /dev/null
+++ b/bbot/agent
@@ -0,0 +1,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