aboutsummaryrefslogtreecommitdiff
path: root/brep/utility
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-11-16 20:02:06 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-11-25 20:35:10 +0200
commit2700ed6a3e1092a064f28b07f8e2c4e5b9b830e7 (patch)
treea54ffc979dde42e609bc9877120fa010887c6b66 /brep/utility
parent48a3c47d34c2acc0a39e2db5acfd437dace499c1 (diff)
Implement new URL path schema for the web interface
Diffstat (limited to 'brep/utility')
-rw-r--r--brep/utility20
1 files changed, 20 insertions, 0 deletions
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 <string> // to_string()
+#include <memory> // make_shared()
+#include <cassert>
+#include <utility> // move()
+
+namespace brep
+{
+ using std::move;
+ using std::make_shared;
+ using std::to_string;
+};
+
+#endif // BREP_UTILITY