fw4spl
adaptors.hpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2017.
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 __FWRENDERVTK_REGISTRY_ADAPTORS_HPP__
8 #define __FWRENDERVTK_REGISTRY_ADAPTORS_HPP__
9 
10 #include "fwRenderVTK/config.hpp"
11 
12 #include <map>
13 #include <string>
14 
15 namespace fwRenderVTK
16 {
17 
18 class IAdaptor;
19 
20 namespace registry
21 {
22 
24 typedef std::map<std::string, std::string> AdaptorRegistryType;
25 
27 FWRENDERVTK_API AdaptorRegistryType& getAdaptorRegistry();
28 
29 } // namespace registry
30 
31 } // namespace fwRenderVTK
32 
33 #endif /* __FWRENDERVTK_REGISTRY_ADAPTORS_HPP__ */
Contains fwAtomsFilter::registry details.
std::map< std::string, std::string > AdaptorRegistryType
map <adaptor Id, SRender Id>
Definition: adaptors.hpp:24
The namespace fwRenderVTK contains classes for rendering with VTK.
FWRENDERVTK_API AdaptorRegistryType & getAdaptorRegistry()
Get the association <adaptor, scene>
Definition: adaptors.cpp:21