diff options
Diffstat (limited to 'asl/option.hpp')
-rw-r--r-- | asl/option.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/asl/option.hpp b/asl/option.hpp new file mode 100644 index 0000000..e71eb57 --- /dev/null +++ b/asl/option.hpp @@ -0,0 +1,13 @@ +#pragma once
+
+#include "asl/meta.hpp"
+
+namespace asl
+{
+
+template<is_object T>
+class option
+{
+};
+
+} // namespace asl
|