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); }; } }