blob: 634daba60f0d1d6c8ace1e713a4c03f9f9fd3fb8 (
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 <tdecmdlineargs.h>
#include <tdeapplication.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();
}
|