fw4spl
backend.cpp
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 
8 #include "fwGui/registry/detail.hpp"
9 #include "fwGui/IApplication.hpp"
10 #include "fwGui/backend.hpp"
11 
12 namespace fwGui
13 {
14 
15 bool isBackendLoaded()
16 {
17  return bool(::fwGui::registry::get()->getFactory(fwGui::IApplication::REGISTRY_KEY));
18 }
19 
20 } // namespace fwGui
21 
22 
23 
The namespace fwGui contains the base interface for IHM services.
Definition: SJobBar.hpp:23