Skip to content
Snippets Groups Projects
main.cpp 1.19 KiB
Newer Older
/*
 * Copyright 2011-2012 INSA Rennes
 * 
 * This file is part of EIImage.
 * 
 * EIImage is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * EIImage is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with EIImage.  If not, see <http://www.gnu.org/licenses/>.
*/

Sacha Percot-Tétu's avatar
Sacha Percot-Tétu committed
#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();
}