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