aboutsummaryrefslogtreecommitdiff
path: root/bbot/utility
diff options
context:
space:
mode:
Diffstat (limited to 'bbot/utility')
-rw-r--r--bbot/utility42
1 files changed, 42 insertions, 0 deletions
diff --git a/bbot/utility b/bbot/utility
new file mode 100644
index 0000000..05e90c7
--- /dev/null
+++ b/bbot/utility
@@ -0,0 +1,42 @@
+// file : bbot/utility -*- C++ -*-
+// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BBOT_UTILITY
+#define BBOT_UTILITY
+
+#include <memory> // make_shared()
+#include <string> // to_string()
+#include <utility> // move(), forward(), declval(), make_pair()
+#include <cassert> // assert()
+#include <iterator> // make_move_iterator()
+
+#include <butl/ft/lang>
+
+#include <butl/utility> // casecmp(), reverse_iterate(), etc
+
+#include <butl/filesystem>
+
+#include <bbot/types>
+
+namespace bbot
+{
+ using std::move;
+ using std::forward;
+ using std::declval;
+
+ using std::make_pair;
+ using std::make_shared;
+ using std::make_move_iterator;
+ using std::to_string;
+
+ // <butl/utility>
+ //
+ using butl::casecmp;
+ using butl::reverse_iterate;
+
+ using butl::exception_guard;
+ using butl::make_exception_guard;
+}
+
+#endif // BBOT_UTILITY