#ifndef CONSTANTCOMPILATIONMODEL_H #define CONSTANTCOMPILATIONMODEL_H #include struct compilerResult{ QString hexCode; QString comment; bool success; }; class ConstantCompilationModel { public: ConstantCompilationModel(); compilerResult compile(QString code); }; #endif // CONSTANTCOMPILATIONMODEL_H