initial code repo
[stor4nfv.git] / src / ceph / src / include / memory.h
diff --git a/src/ceph/src/include/memory.h b/src/ceph/src/include/memory.h
new file mode 100644 (file)
index 0000000..409b49f
--- /dev/null
@@ -0,0 +1,13 @@
+#ifndef CEPH_MEMORY_H
+#define CEPH_MEMORY_H
+
+#include <memory>
+
+namespace ceph {
+  using std::shared_ptr;
+  using std::weak_ptr;
+  using std::unique_ptr;
+  using std::static_pointer_cast;
+}
+
+#endif