fw4spl
Samples/Tutorials/Tuto14MeshGenerator/include/Tuto14MeshGenerator/Plugin.hpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2018.
3  * Distributed under the terms of the GNU Lesser General Public License (LGPL) as
4  * published by the Free Software Foundation.
5  * ****** END LICENSE BLOCK ****** */
6 
7 #pragma once
8 
9 #include "Tuto14MeshGenerator/config.hpp"
10 
11 #include <fwRuntime/Plugin.hpp>
12 
13 namespace Tuto14MeshGenerator
14 {
15 
19 class TUTO14MESHGENERATOR_CLASS_API Plugin : public ::fwRuntime::Plugin
20 {
21 
22 public:
23 
25  TUTO14MESHGENERATOR_API ~Plugin() noexcept;
26 
28  TUTO14MESHGENERATOR_API void start();
29 
31  TUTO14MESHGENERATOR_API void stop() noexcept;
32 };
33 
34 } // namespace Tuto14MeshGenerator
35 
Provides a default plugin implementation.