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