mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-05 19:05:32 +00:00
88d3e4fd47
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
16 lines
262 B
C++
16 lines
262 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace EightBit {
|
|
class DisassemblyEventArgs {
|
|
private:
|
|
std::string m_output;
|
|
|
|
public:
|
|
DisassemblyEventArgs(std::string output)
|
|
: m_output(output) {}
|
|
|
|
const std::string& getOutput() const { return m_output; }
|
|
};
|
|
} |