You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
357 B
19 lines
357 B
#include "core.h"
|
|
|
|
#include <kplugininfo.h>
|
|
#include <kcmdlineargs.h>
|
|
#include <kapplication.h>
|
|
#include <kdebug.h>
|
|
|
|
int main( int argc, char **argv )
|
|
{
|
|
KCmdLineArgs::init( argc, argv, "test", "test", "test", "0.1" );
|
|
KApplication app;
|
|
|
|
Komposer::Core *core = new Komposer::Core();
|
|
app.setMainWidget( core );
|
|
core->show();
|
|
|
|
return app.exec();
|
|
}
|