blob: efacb460fde17dd13ca8ce7a431bb212954a5bfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "core.h"
#include <kplugininfo.h>
#include <kcmdlineargs.h>
#include <kapplication.h>
#include <kdebug.h>
int main( int argc, char **argv )
{
TDECmdLineArgs::init( argc, argv, "test", "test", "test", "0.1" );
TDEApplication app;
Komposer::Core *core = new Komposer::Core();
app.setMainWidget( core );
core->show();
return app.exec();
}
|