11 lines
140 B
C
11 lines
140 B
C
|
#pragma once
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
|
||
|
struct Context;
|
||
|
|
||
|
class MainWindow : public QMainWindow {
|
||
|
public:
|
||
|
MainWindow(Context& context);
|
||
|
};
|