diff options
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(); +} |