12 lines
150 B
C++
12 lines
150 B
C++
#pragma once
|
|
#include <ehs/Str.h>
|
|
|
|
#include "Instruction.h"
|
|
|
|
class EHS_LIB_IO Keyword
|
|
{
|
|
private:
|
|
ehs::Str_8 identifier;
|
|
Instruction instruction;
|
|
};
|