mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
14 lines
250 B
C++
14 lines
250 B
C++
#include <FL/Fl.H>
|
|
#include <FL/Fl_Double_Window.H>
|
|
#include <FL/Fl_Button.H>
|
|
|
|
#include "Panel.h"
|
|
#include "AppletManager.h"
|
|
|
|
int main(int argc, char **argv) {
|
|
Panel* panel = new Panel();
|
|
panel->load_applets();
|
|
panel->show();
|
|
return Fl::run();
|
|
}
|