QGCVideoApp.h 1.47 KB
Newer Older
1
/*=====================================================================
2

3
 QGroundControl Open Source Ground Control Station
4

5
 (c) 2009 - 2011 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
6

7
 This file is part of the QGROUNDCONTROL project
8

9 10 11 12
 QGROUNDCONTROL is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.
13

14 15 16 17
 QGROUNDCONTROL is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
18

19 20
 You should have received a copy of the GNU General Public License
 along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
21

22 23 24 25
 ======================================================================*/

/**
 * @file
26 27
 *   @brief Definition of main application class
 *
28 29 30 31
 *   @author Lorenz Meier <lm@inf.ethz.ch>
 *
 */

32

33 34 35
#ifndef QGCVIDEOAPP_H
#define QGCVIDEOAPP_H

36
#include <QApplication>
37

38 39 40 41 42 43 44 45
/**
 * @brief The main application and management class.
 *
 * This class is started by the main method and provides
 * the central management unit of the groundstation application.
 *
 **/
class QGCVideoApp : public QApplication
46 47 48 49
{
    Q_OBJECT

public:
50
    QGCVideoApp(int &argc, char* argv[]);
51 52
    ~QGCVideoApp();

53 54
protected:

55 56 57
private:
};

58
#endif /* QGCVIDEOAPP_H */