summaryrefslogtreecommitdiffstats
path: root/libtdepim/komposer/core/tests/testkomposer.cpp
blob: 31462a7e3989a1655f46ad99f40d8c6343c25d99 (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" );
  KApplication app;

  Komposer::Core *core = new Komposer::Core();
  app.setMainWidget( core );
  core->show();

  return app.exec();
}