summaryrefslogtreecommitdiffstats
path: root/src/gui/clientInfoDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/clientInfoDialog.h')
-rw-r--r--src/gui/clientInfoDialog.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/gui/clientInfoDialog.h b/src/gui/clientInfoDialog.h
new file mode 100644
index 0000000..770b5b7
--- /dev/null
+++ b/src/gui/clientInfoDialog.h
@@ -0,0 +1,32 @@
+/*
+ # Copyright (c) 2009, 2010 - OpenSLX Project, Computer Center University of
+ # Freiburg
+ #
+ # This program is free software distributed under the GPL version 2.
+ # See http://openslx.org/COPYING
+ #
+ # If you have any feedback please consult http://openslx.org/feedback and
+ # send your suggestions, praise, or complaints to feedback@openslx.org
+ #
+ # General information about OpenSLX can be found at http://openslx.org/
+ */
+
+#ifndef CLIENTINFODIALOG_H_
+#define CLIENTINFODIALOG_H_
+
+#include <QtGui>
+#include "ui_clientInfoDialog.h"
+
+class ClientInfoDialog: public QDialog, private Ui::InfoDialogClass
+{
+Q_OBJECT
+
+public:
+ ClientInfoDialog(QWidget *parent = 0);
+ ~ClientInfoDialog();
+
+ void setHost(QString host);
+ void setPasswd(QString passwd);
+};
+
+#endif /* CLIENTINFODIALOG_H_ */