Newer
Older
invertedlogic / LGN-IP3870 / qtpyui / server / pythonoutput.h
@John Ryland John Ryland on 19 Jan 2009 252 bytes LG project files
#ifndef PYTHON_OUTPUT_H
#define PYTHON_OUTPUT_H


#include <QObject>


class PythonOutput : public QObject
{
	Q_OBJECT
public:
	PythonOutput(QObject *parent);
public slots:
	void stdOut(const QString& s);
	void stdErr(const QString& s);
};


#endif