SXEval 1.0.3
A generic s-expression interpreter library.
Loading...
Searching...
No Matches
IOperand.hpp
Go to the documentation of this file.
1#ifndef SXEVAL_IOPERAND_HPP
2#define SXEVAL_IOPERAND_HPP
3
5
6namespace sxeval {
7
15template <typename T>
16class IOperand : public virtual IInstruction<T> {
17public:
21 virtual ~IOperand() override = default;
22
23};
24
25} /* namespace sxeval */
26#endif /* SXEVAL_IOPERAND_HPP */
The IInstruction class is an interface for any instructions.
Definition IInstruction.hpp:21
The IOperand class is an interface for operands.
Definition IOperand.hpp:16
virtual ~IOperand() override=default
Default destructor.
Definition AOperation.hpp:8