summaryrefslogtreecommitdiffstats
path: root/animals/mainwindow.h
blob: d86cc19aec93062b15f811917e987de4d70633b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QtGui/QMainWindow>

class QDeclarativeView;

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    MainWindow(QWidget *parent = 0);
    ~MainWindow();

    QDeclarativeView* view;
};

#endif // MAINWINDOW_H