diff options
Diffstat (limited to 'starts/meaning-vm/level-0/common.hpp')
-rw-r--r-- | starts/meaning-vm/level-0/common.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/starts/meaning-vm/level-0/common.hpp b/starts/meaning-vm/level-0/common.hpp new file mode 100644 index 0000000..4c36a04 --- /dev/null +++ b/starts/meaning-vm/level-0/common.hpp @@ -0,0 +1,14 @@ +#pragma once + +#define self (*this) + +namespace intellect { +namespace level0 { + +struct concept; +struct ref; +template <typename T> struct value; +template <typename T> struct vref; + +} +} |