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

14 lines
156 B
C++

#include "Code.hpp"
namespace jk
{
/*explicit*/ Code::Code(foreign_t foreign)
: m_foreign { foreign }
{
}
/*virtual*/ Code::~Code()
{
}
}