diff options
Diffstat (limited to 'starts/meaning-vm/level-2/ref.hpp')
-rw-r--r-- | starts/meaning-vm/level-2/ref.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/starts/meaning-vm/level-2/ref.hpp b/starts/meaning-vm/level-2/ref.hpp new file mode 100644 index 0000000..7a2d58d --- /dev/null +++ b/starts/meaning-vm/level-2/ref.hpp @@ -0,0 +1,15 @@ +#pragma once + +#include "common.hpp" +#include "baseref.hpp" + +namespace intellect { +namespace level2 { + +struct ref : public baseref<ref> +{ + using baseref<ref>::baseref; +}; + +} +} |