RedPanda-CPP/RedPandaIDE/compiler/stdincompiler.h

31 lines
584 B
C
Raw Normal View History

2021-06-24 20:43:09 +08:00
#ifndef STDINCOMPILER_H
#define STDINCOMPILER_H
#include "compiler.h"
class StdinCompiler : public Compiler
{
Q_OBJECT
public:
explicit StdinCompiler(const QString& filename, const QString& content, bool silent,bool onlyCheckSyntax);
// Compiler interface
protected:
Settings::PCompilerSet compilerSet() override;
bool prepareForCompile() override;
private:
QString mContent;
// Compiler interface
protected:
2021-06-25 12:40:11 +08:00
QString pipedText() override;
// Compiler interface
protected:
bool prepareForRebuild() override;
2021-06-24 20:43:09 +08:00
};
#endif // STDINCOMPILER_H