From a133e7b03bd67c992cfb240bd300967ffab31ba2 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 1 Apr 2017 16:46:03 +0200 Subject: Setup build infra --- bbot/utility | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 bbot/utility (limited to 'bbot/utility') 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 // make_shared() +#include // to_string() +#include // move(), forward(), declval(), make_pair() +#include // assert() +#include // make_move_iterator() + +#include + +#include // casecmp(), reverse_iterate(), etc + +#include + +#include + +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; + + // + // + using butl::casecmp; + using butl::reverse_iterate; + + using butl::exception_guard; + using butl::make_exception_guard; +} + +#endif // BBOT_UTILITY -- cgit v1.1