#pragma once /*========================================================================= medInria Copyright (c) INRIA 2013. All rights reserved. See LICENSE.txt for details in the root of the sources or: https://github.com/medInria/medInria-public/blob/master/LICENSE.txt This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. =========================================================================*/ #include #include namespace med { class EXPORTVIDEOPLUGIN_EXPORT ExportVideoPlugin : public medPluginLegacy { Q_OBJECT Q_INTERFACES(dtkPlugin) Q_PLUGIN_METADATA(IID "fr.inria.medExportVideoPlugin" FILE "medExportVideoPlugin.json") public: ExportVideoPlugin(QObject *parent = nullptr); virtual bool initialize(); virtual QString name() const; virtual QString description() const; virtual QString version() const; virtual QStringList types() const; }; }