]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/QBranchDialog.h
Remove quite a few compiler warnings:
[lyx.git] / src / frontends / qt4 / QBranchDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QBranchDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jürgen Spitzmüller
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef QBRANCHDIALOG_H
13 #define QBRANCHDIALOG_H
14
15 #include "ui/QBranchUi.h"
16
17 #include <QCloseEvent>
18 #include <QDialog>
19
20 namespace lyx {
21 namespace frontend {
22
23 class QBranch;
24
25 class QBranchDialog : public QDialog, public Ui::QBranchUi {
26         Q_OBJECT
27 public:
28         QBranchDialog(QBranch * form);
29 protected Q_SLOTS:
30         virtual void change_adaptor();
31 protected:
32         virtual void closeEvent(QCloseEvent * e);
33 private:
34         QBranch * form_;
35 };
36
37 } // namespace frontend
38 } // namespace lyx
39
40 #endif // QBRANCHDIALOG_H