diff options
Diffstat (limited to 'asl/object.hpp')
-rw-r--r-- | asl/object.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/asl/object.hpp b/asl/object.hpp new file mode 100644 index 0000000..17e9ce4 --- /dev/null +++ b/asl/object.hpp @@ -0,0 +1,10 @@ +#pragma once
+
+namespace asl {
+
+template<typename T>
+class object final
+{
+};
+
+} // namespace asl
|