mirror of
https://github.com/logos-blockchain/logos-blockchain-ui.git
synced 2026-02-14 10:33:29 +00:00
19 lines
248 B
C++
19 lines
248 B
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainWindow(QWidget *parent = nullptr);
|
|
~MainWindow();
|
|
|
|
private:
|
|
void setupUi();
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|