16 lines
248 B
C++
16 lines
248 B
C++
#pragma once
|
|
|
|
#include <QApplication>
|
|
#include <QtWidgets>
|
|
|
|
#include "panda_qt/screen.hpp"
|
|
|
|
class MainWindow : public QMainWindow {
|
|
Q_OBJECT
|
|
|
|
private:
|
|
ScreenWidget screen;
|
|
|
|
public:
|
|
MainWindow(QApplication* app, QWidget* parent = nullptr);
|
|
}; |