xlnt/third-party/cxxtest/test/fake/qapplication.h

15 lines
270 B
C
Raw Normal View History

// 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; }
};