fw4spl
Bundles/ui/uiTF/include/uiTF/Plugin.hpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-2015.
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 #ifndef __UITF_PLUGIN_HPP__
8 #define __UITF_PLUGIN_HPP__
9 
10 #include <fwRuntime/Plugin.hpp>
11 
12 #include "uiTF/config.hpp"
13 
14 namespace uiTF
15 {
20 class UITF_CLASS_API Plugin : public ::fwRuntime::Plugin
21 {
22 
23 public:
24 
28  UITF_API ~Plugin() noexcept;
29 
30  // Overrides
31  UITF_API void start();
32 
33  // Overrides
34  UITF_API void stop() noexcept;
35 
36 };
37 
38 } // namespace uiTF
39 
40 #endif //__UITF_PLUGIN_HPP__
Provides a default plugin implementation.
Transfert functions editor.