blob: f54eb721826eb56f7d847691da1e0ff9a2dbb11a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "ui/applicationBase.h"
#include "ui/mainWindow.h"
class TestMainWindow : public MainWindow {
// This exists only to hold an OpenGL context open for the duration of the tests,
// in the same way a real main window would always exist.
public:
TestMainWindow();
};
class TestMainWindowAppBase : public ApplicationBase, public TestMainWindow { };
|