]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/mount/mount.h
Make qt-console compatible to Qt5 (Qt4 still work)
[bacula/bacula] / bacula / src / qt-console / mount / mount.h
1 /*
2    Bacula(R) - The Network Backup Solution
3
4    Copyright (C) 2000-2016 Kern Sibbald
5
6    The original author of Bacula is Kern Sibbald, with contributions
7    from many others, a complete list can be found in the file AUTHORS.
8
9    You may use this file and others of this release according to the
10    license defined in the LICENSE file, which includes the Affero General
11    Public License, v3.0 ("AGPLv3") and some additional permissions and
12    terms pursuant to its AGPLv3 Section 7.
13
14    This notice must be preserved when any source code is 
15    conveyed and/or propagated.
16
17    Bacula(R) is a registered trademark of Kern Sibbald.
18 */
19 /* 
20  * Kern Sibbald, February MMVII
21  */
22
23 #ifndef _MOUNT_H_
24 #define _MOUNT_H_
25
26 #if QT_VERSION >= 0x050000
27 #include <QtWidgets>
28 #else
29 #include <QtGui>
30 #endif
31 #include "ui_mount.h"
32 #include "console.h"
33
34 class mountDialog : public QDialog, public Ui::mountForm
35 {
36    Q_OBJECT 
37
38 public:
39    mountDialog(Console *console, QString &storage);
40
41 private slots:
42    void accept();
43    void reject();
44
45 private:
46    Console *m_console;
47    QString m_storageName;
48    int m_conn;
49 };
50
51 #endif /* _MOUNT_H_ */