Maraiah/source/tycho-qt/mainwindow.h

25 lines
313 B
C
Raw Normal View History

2019-05-15 12:54:35 -07:00
#pragma once
#ifndef tycho_qt__mainwindow_h
#define tycho_qt__mainwindow_h
#include <QMainWindow>
namespace Ui
{
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
private:
Ui::MainWindow *ui;
};
#endif