2019-03-15 08:14:23 -03:00
|
|
|
#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;
|
2019-03-23 18:58:53 -03:00
|
|
|
app_window.set_should_exit_event_loop_on_close(true);
|
2019-03-15 08:14:23 -03:00
|
|
|
app_window.show();
|
|
|
|
|
|
|
|
|
|
printf("Entering main loop...\n");
|
|
|
|
|
return app.exec();
|
|
|
|
|
}
|