roza/lib/Fun.cpp

14 lines
156 B
C++
Raw Normal View History

2023-09-01 20:38:12 +00:00
#include "Fun.hpp"
namespace roza
{
/*explicit*/ Fun::Fun(std::shared_ptr<Type> type)
: m_type { type }
{
}
/*virtual*/ Fun::~Fun()
{
}
}