summaryrefslogtreecommitdiffstats
path: root/qt-ui/mainwindow.h
blob: 9e15e58b49397dc8bb4398fab30ec603a6fc268e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>

namespace Ui
{
	class MainWindow;
}

class DiveInfo;
class DiveNotes;
class Stats;
class Equipment;

class MainWindow : public QMainWindow{
	Q_OBJECT
public:
	MainWindow();
private:
	Ui::MainWindow *ui;
};

#endif