1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 06:55:07 +00:00
serenity/Applications/IRCClient/main.cpp
Andreas Kling aa19735c5a IRCClient: Start working on a simple graphical IRC client.
This will be a nice way to exercise both LibGUI and the TCP/IP support. :^)
2019-03-15 12:14:23 +01:00

15 lines
288 B
C++

#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();
}