#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