eflxx/examples/angstrom/bootmanager/main.cpp

17 lines
296 B
C++

#include "app.h"
#include "win.h"
// Ångström BootManager
int main( int argc, const char **argv )
{
BootManagerApp application( argc, argv, "Angstrom BootManager" );
BootManagerWin* window = new BootManagerWin( 240, 320 );
window->show();
application.exec();
return 0;
}