This repository has been archived on 2023-09-09. You can view files and clone it, but cannot push or open issues/pull-requests.
skemla/lib/Type.cpp

14 lines
146 B
C++
Raw Normal View History

2023-09-08 11:13:47 +00:00
#include "Type.hpp"
namespace sk
{
/*explicit*/ Type::Type(TypeType type)
: m_type { type }
{
}
/*virtual*/ Type::~Type()
{
}
}