From 2700ed6a3e1092a064f28b07f8e2c4e5b9b830e7 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 16 Nov 2015 20:02:06 +0200 Subject: Implement new URL path schema for the web interface --- brep/utility | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 brep/utility (limited to 'brep/utility') diff --git a/brep/utility b/brep/utility new file mode 100644 index 0000000..d978e2b --- /dev/null +++ b/brep/utility @@ -0,0 +1,20 @@ +// file : brep/utility -*- C++ -*- +// copyright : Copyright (c) 2014-2015 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 -- cgit v1.1