2019-04-03 19:38:44 +02:00
|
|
|
#include "TaskbarWindow.h"
|
2019-06-07 11:48:03 +02:00
|
|
|
#include <LibGUI/GApplication.h>
|
2019-04-03 19:38:44 +02:00
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
|
{
|
|
|
|
|
GApplication app(argc, argv);
|
|
|
|
|
TaskbarWindow window;
|
|
|
|
|
window.show();
|
|
|
|
|
return app.exec();
|
|
|
|
|
}
|