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.hpp

23 lines
295 B
C++

#ifndef jk_CODE_HPP
#define jk_CODE_HPP
#include "commons.hpp"
#include "Function.hpp"
namespace jk
{
class Code
{
public:
explicit Code(foreign_t foreign);
virtual ~Code();
foreign_t foreign() const { return m_foreign; }
private:
foreign_t m_foreign;
};
}
#endif