1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
/* ***** BEGIN LICENSE BLOCK *****
* FW4SPL - Copyright (C) IRCAD, 2018.
* Distributed under the terms of the GNU Lesser General Public License (LGPL) as
* published by the Free Software Foundation.
* ****** END LICENSE BLOCK ****** */
#include "ioDicomWeb/Plugin.hpp"
#include <fwRuntime/utils/GenericExecutableFactoryRegistrar.hpp>
#include <fwServices/macros.hpp>
namespace ioDicomWeb
{
using namespace ::fwRuntime::utils;
static GenericExecutableFactoryRegistrar<Plugin> registrar("::ioDicomWeb::Plugin");
Plugin::~Plugin() noexcept
{
}
//------------------------------------------------------------------------------
void Plugin::start()
{
}
//------------------------------------------------------------------------------
void Plugin::stop() noexcept
{
}
} // namespace ioDicomWeb
|