2014-07-02 16:06:54 +02:00
|
|
|
#include <PartitionCoreModule.h>
|
2014-06-27 17:25:39 +02:00
|
|
|
#include <PartitionPage.h>
|
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
|
|
|
|
int
|
|
|
|
main( int argc, char* argv[] )
|
|
|
|
{
|
|
|
|
QApplication app( argc, argv );
|
2014-07-02 16:06:54 +02:00
|
|
|
PartitionCoreModule core;
|
|
|
|
PartitionPage page( &core );
|
2014-06-27 17:25:39 +02:00
|
|
|
page.show();
|
|
|
|
return app.exec();
|
|
|
|
}
|