/*========================================================================= 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 #include meshMappingPlugin::meshMappingPlugin(QObject *parent) : medPluginLegacy(parent) { } bool meshMappingPlugin::initialize() { if(!meshMapping::registered()) { qWarning() << "Unable to register meshMapping type"; } if ( !meshMappingToolBox::registered() ) { qWarning() << "Unable to register meshMapping toolbox"; } return true; } QString meshMappingPlugin::name() const { return "Mesh Mapping"; } QString meshMappingPlugin::description() const { QString description = \ tr("Sample data values at specified point locations on a mesh.\

This plugin uses the VTK library."); return description; } QString meshMappingPlugin::version() const { return MESHMAPPINGPLUGIN_VERSION; } QStringList meshMappingPlugin::types() const { return QStringList() << "meshMapping"; }