summaryrefslogtreecommitdiff
path: root/starts/meaning-vm/level-0/ref.hpp
diff options
context:
space:
mode:
authorolpc user <olpc@xo-5d-f7-86.localdomain>2019-11-24 16:15:08 -0800
committerolpc user <olpc@xo-5d-f7-86.localdomain>2019-11-24 16:15:08 -0800
commitdbbed1e4e1d4b3f268c71236c89f1d673fa0c165 (patch)
treefd12a1f4bcb2fe9cc1695787f5e3d992117b9edc /starts/meaning-vm/level-0/ref.hpp
parentf80b3ce2b52f568bb04005c24ad11c3a05cf7a15 (diff)
downloadstandingwithresilience-dbbed1e4e1d4b3f268c71236c89f1d673fa0c165.tar.gz
standingwithresilience-dbbed1e4e1d4b3f268c71236c89f1d673fa0c165.zip
add a linking mixin for use by ref classes
Diffstat (limited to 'starts/meaning-vm/level-0/ref.hpp')
-rw-r--r--starts/meaning-vm/level-0/ref.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/starts/meaning-vm/level-0/ref.hpp b/starts/meaning-vm/level-0/ref.hpp
index 951676b..c1fa7fa 100644
--- a/starts/meaning-vm/level-0/ref.hpp
+++ b/starts/meaning-vm/level-0/ref.hpp
@@ -1,13 +1,14 @@
#pragma once
#include "common.hpp"
+#include "ref-mixin.hpp"
#include <string>
namespace intellect {
namespace level0 {
-struct ref
+struct ref : public refmixin<ref, vref>
{
ref(concept *p);
operator concept*() const { return ptr; }