aboutsummaryrefslogtreecommitdiff
path: root/brep/utility
diff options
context:
space:
mode:
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