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

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

namespace intellect {
namespace level1 {

struct ref : public baseref<ref>
{
	using baseref<ref>::baseref;

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

}
}