Hello world! First commit.

This commit is contained in:
Ernst 2018-08-31 18:04:15 -07:00
commit 263c65ac46
2435 changed files with 30491 additions and 0 deletions

25
mainwindow.h Normal file
View file

@ -0,0 +1,25 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
void EnableThemeDark();
void EnableThemeLight();
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H