fw4spl
IRender.cpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-2016.
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 #include <string>
8 
9 #include <fwCore/base.hpp>
10 
11 #include <fwRuntime/ConfigurationElement.hpp>
12 #include <fwRuntime/operations.hpp>
13 
14 #include <fwServices/macros.hpp>
15 
16 
17 #include "fwRender/IRender.hpp"
18 
19 namespace fwRender
20 {
21 
22 //-----------------------------------------------------------------------------
23 
24 IRender::IRender() noexcept
25 {
26 }
27 
28 //-----------------------------------------------------------------------------
29 
31 {
32 }
33 
34 //-----------------------------------------------------------------------------
35 
36 }
The namespace fwRender contains the base interface for rendering services.
Definition: IRender.hpp:18
virtual FWRENDER_API ~IRender() noexcept
Destructor. Do nothing.
Definition: IRender.cpp:30
FWRENDER_API IRender() noexcept
Constructor. Initialize default values.
Definition: IRender.cpp:24