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

19 lines
253 B
C++
Raw Permalink Normal View History

2023-09-09 22:03:28 +00:00
#include "Code.hpp"
namespace jk
{
/*explicit*/ Code::Code(foreign_t foreign)
: m_foreign { foreign }
{
}
/*explicit*/ Code::Code(std::shared_ptr<Program> program)
: m_program { program }
{
}
2023-09-09 22:03:28 +00:00
/*virtual*/ Code::~Code()
{
}
}