diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-15 12:14:23 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-15 12:14:23 +0100 |
commit | aa19735c5aaf645236bde7b2f6d0ee2da0b60078 (patch) | |
tree | e641fd725171b1966eb5d0ea7a76535e09b6888c /Applications/IRCClient/main.cpp | |
parent | f87dec1cbf55f74146a59b83b99ad6c703810699 (diff) | |
download | serenity-aa19735c5aaf645236bde7b2f6d0ee2da0b60078.zip |
IRCClient: Start working on a simple graphical IRC client.
This will be a nice way to exercise both LibGUI and the TCP/IP support. :^)
Diffstat (limited to 'Applications/IRCClient/main.cpp')
-rw-r--r-- | Applications/IRCClient/main.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
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 <LibGUI/GApplication.h> +#include "IRCAppWindow.h" +#include <stdio.h> + +int main(int argc, char** argv) +{ + GApplication app(argc, argv); + + IRCAppWindow app_window; + app_window.show(); + + printf("Entering main loop...\n"); + return app.exec(); +} |