sirit/src/operand.h

33 lines
702 B
C
Raw Normal View History

2018-08-26 00:16:37 +01:00
/* This file is part of the sirit project.
* Copyright (c) 2018 ReinUsesLisp
* This software may be used and distributed according to the terms of the GNU
2018-08-27 03:28:39 +01:00
* Lesser General Public License version 2.1 or any later version.
2018-08-26 00:16:37 +01:00
*/
#pragma once
#include "stream.h"
namespace Sirit {
2018-10-03 04:32:45 +01:00
enum class OperandType { Invalid, Op, Number, String };
2018-08-26 00:16:37 +01:00
class Operand {
2018-10-03 04:32:45 +01:00
public:
2018-08-26 00:16:37 +01:00
Operand();
virtual ~Operand();
virtual void Fetch(Stream& stream) const;
virtual u16 GetWordCount() const;
virtual bool operator==(const Operand& other) const;
bool operator!=(const Operand& other) const;
OperandType GetType() const;
2018-10-03 04:32:45 +01:00
protected:
2018-08-26 00:16:37 +01:00
OperandType operand_type{};
};
} // namespace Sirit