/*========================================================================= medInria Copyright (c) INRIA 2013 - 2019. All rights reserved. See LICENSE.txt for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. =========================================================================*/ #include #include voiCutterPlugin::voiCutterPlugin(QObject *parent) : medPluginLegacy(parent) { } bool voiCutterPlugin::initialize() { if(!voiCutterToolBox::registered()) { qDebug() << "Unable to register voiCutterToolBox"; } return true; } QString voiCutterPlugin::name() const { return "VOI Cutter"; } QString voiCutterPlugin::description() const { QString description = \ "Segmentation of Volumes of Interest (VOI) on a volume or mask. \

This plugin uses the VTK library."; return description; } QString voiCutterPlugin::version() const { return VOICUTTERPLUGIN_VERSION; }