// 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