Skip to content
Snippets Groups Projects
Commit 5ea0c469 authored by Sacha Percot-Tétu's avatar Sacha Percot-Tétu
Browse files

Added the main

parent 7e44ab29
No related branches found
No related tags found
No related merge requests found
#include <QApplication>
#include <GenericInterface.h>
#include <iostream>
#include "Services/PluginManager.h"
#include "Services/EIImageService.h"
using namespace genericinterface;
using namespace std;
int main(int argc, char** argv)
{
qDebug("HW!");
QApplication app(argc, argv);
Log::configure(true, false, 0);
GenericInterface m("ImageEII", Qt::RightDockWidgetArea);
m.addService(new PluginManager(&m));
m.addService(new EIImageService(&m));
m.run();
return app.exec();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment