Files
cpp-thirdparty/noarch/lib/py/cxxtest/test/fake/qapplication.h
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

15 lines
270 B
C++

// fake QApplication
class QWidget;
class QApplication
{
public:
QApplication(int &, char **) {}
void exec() {}
void setMainWidget(void *) {}
void processEvents() {}
static QWidget *desktop() { return 0; }
void *activeWindow() { return 0; }
};