forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRepoSelect.h
48 lines (35 loc) · 871 Bytes
/
RepoSelect.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
*
*
* Distributed under the OpenDDS License.
* See: http://www.opendds.org/license.html
*/
#ifndef REPOSELECT_H
#define REPOSELECT_H
// Tell GCC to ignore implicitly declared copy methods as long as
// Qt is not compliant.
#ifdef __GNUC__
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wdeprecated-copy"
#endif
#include "ui_RepoDialog.h"
#ifdef __GNUC__
# pragma GCC diagnostic pop
#endif
namespace Monitor {
class RepoSelect : public QDialog {
Q_OBJECT
public:
static QString getRepoIOR( QWidget* parent, bool* status);
protected:
RepoSelect( QWidget* parent = 0);
private slots:
void fileIOR();
private:
/// The IOR string value produced by this dialog, if any.
QString ior_;
/// The dialog user interface.
Ui::RepoSelectDialog ui;
};
} // End of namespace Monitor
#endif /* REPOSELECT_H */