mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 06:38:10 +00:00
IRCClient: Start working on a simple graphical IRC client.
This will be a nice way to exercise both LibGUI and the TCP/IP support. :^)
This commit is contained in:
parent
f87dec1cbf
commit
aa19735c5a
18 changed files with 779 additions and 1 deletions
15
Applications/IRCClient/main.cpp
Normal file
15
Applications/IRCClient/main.cpp
Normal file
|
@ -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();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue