mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-12-27 10:29:30 +00:00
105032f08a
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
15 lines
230 B
C++
15 lines
230 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class DisassemblyEventArgs
|
|
{
|
|
private:
|
|
std::string m_output;
|
|
|
|
public:
|
|
DisassemblyEventArgs(std::string output)
|
|
: m_output(output) {}
|
|
|
|
const std::string& getOutput() const { return m_output; }
|
|
}; |