// file : brep/utility -*- C++ -*- // copyright : Copyright (c) 2014-2016 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #ifndef BREP_UTILITY #define BREP_UTILITY #include // to_string() #include // make_shared() #include #include // move() namespace brep { using std::move; using std::make_shared; using std::to_string; }; #endif // BREP_UTILITY