summaryrefslogtreecommitdiff
path: root/server/ircnetworkconfig.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--server/ircnetworkconfig.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/server/ircnetworkconfig.h b/server/ircnetworkconfig.h
new file mode 100644
index 0000000..bfbf098
--- /dev/null
+++ b/server/ircnetworkconfig.h
@@ -0,0 +1,13 @@
+#ifndef IRCNETWORKCONFIG_H
+#define IRCNETWORKCONFIG_H
+
+#include <QString>
+
+struct IRCNetworkConfig {
+ QString hostname;
+ int port;
+ QString password;
+ bool useSSL;
+};
+
+#endif // IRCNETWORKCONFIG_H