From aa19735c5aaf645236bde7b2f6d0ee2da0b60078 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 15 Mar 2019 12:14:23 +0100 Subject: IRCClient: Start working on a simple graphical IRC client. This will be a nice way to exercise both LibGUI and the TCP/IP support. :^) --- Applications/IRCClient/main.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Applications/IRCClient/main.cpp (limited to 'Applications/IRCClient/main.cpp') diff --git a/Applications/IRCClient/main.cpp b/Applications/IRCClient/main.cpp new file mode 100644 index 0000000000..4ed4ae1e21 --- /dev/null +++ b/Applications/IRCClient/main.cpp @@ -0,0 +1,15 @@ +#include "IRCClient.h" +#include +#include "IRCAppWindow.h" +#include + +int main(int argc, char** argv) +{ + GApplication app(argc, argv); + + IRCAppWindow app_window; + app_window.show(); + + printf("Entering main loop...\n"); + return app.exec(); +} -- cgit v1.2.3