ladybird/Applications/Taskbar/main.cpp
Andreas Kling a22774ee3f Taskbar: Start working on a taskbar app.
I originally thought I would do this inside WindowServer, but let's try to
make it as a standalone app that communicates with WindowServer instead.
That will allow us to use LibGUI. :^)
2019-04-03 19:38:44 +02:00

11 lines
199 B
C++

#include <LibGUI/GApplication.h>
#include "TaskbarWindow.h"
int main(int argc, char** argv)
{
GApplication app(argc, argv);
TaskbarWindow window;
window.show();
return app.exec();
}