summaryrefslogtreecommitdiff
path: root/intellect-framework-from-internet/starts/meaning-vm/level-0/ref.hpp
blob: ff55355e0e7222bc3e590ef714605c4a4879c159 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include "common.hpp"
#include "baseref.hpp"

#include <string>

namespace intellect {
namespace level0 {

struct ref : public baseref<ref>
{
	ref(concept *p) : baseref(p) { }

	std::string dump(ref skipmarkertype, ref skipmarkertarget);
};

}
}