diff --git a/Modules/WebInteraction/CMakeLists.txt b/Modules/WebInteraction/CMakeLists.txt new file mode 100644 index 0000000000..375ce5e786 --- /dev/null +++ b/Modules/WebInteraction/CMakeLists.txt @@ -0,0 +1,5 @@ +MITK_CREATE_MODULE( + DEPENDS MitkCore MitkQtWidgets + PACKAGE_DEPENDS + PRIVATE Qt5|UiTools+XmlPatterns+Widgets +) diff --git a/Modules/WebInteraction/files.cmake b/Modules/WebInteraction/files.cmake new file mode 100644 index 0000000000..02d5495809 --- /dev/null +++ b/Modules/WebInteraction/files.cmake @@ -0,0 +1,18 @@ +file(GLOB_RECURSE H_FILES RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/include/*") + +set(CPP_FILES + mitkXnatSessionTracker.cpp +) + +set(MOC_H_FILES + +) + +set(QRC_FILES + +) + + +set(UI_FILES + +) diff --git a/Modules/WebInteraction/include/mitkWebInteractionRegistry.h b/Modules/WebInteraction/include/mitkWebInteractionRegistry.h new file mode 100644 index 0000000000..f96490c309 --- /dev/null +++ b/Modules/WebInteraction/include/mitkWebInteractionRegistry.h @@ -0,0 +1,40 @@ +/*=================================================================== + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center, +Division of Medical and Biological Informatics. +All rights reserved. + +This software is distributed WITHOUT ANY WARRANTY; without +even the implied warranty of MERCHANTABILITY or FITNESS FOR +A PARTICULAR PURPOSE. + +See LICENSE.txt or http://www.mitk.org for details. + +===================================================================*/ + +#ifndef MITKWEBINTERACTINREGISTRY_H +#define MITKWEBINTERACTINREGISTRY_H + +#include "MitkWebInteractionExports.h" + +namespace mitk { + +class MITKWEBINTERACTION_EXPORT WebInteractionRegistry +{ + Q_OBJECT + +public: + WebInteractionRegistry(); + + +private: + + us::ModuleContext* m_Context; + +}; + +} // end of namespace mitk + +#endif // MITKXNATSESSIONTRACKER_H diff --git a/Modules/WebInteraction/src/mitkWebInteractionRegistry.cpp b/Modules/WebInteraction/src/mitkWebInteractionRegistry.cpp new file mode 100644 index 0000000000..83d9bb43a3 --- /dev/null +++ b/Modules/WebInteraction/src/mitkWebInteractionRegistry.cpp @@ -0,0 +1,27 @@ +/*=================================================================== + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center, +Division of Medical and Biological Informatics. +All rights reserved. + +This software is distributed WITHOUT ANY WARRANTY; without +even the implied warranty of MERCHANTABILITY or FITNESS FOR +A PARTICULAR PURPOSE. + +See LICENSE.txt or http://www.mitk.org for details. + +===================================================================*/ + +#include "mitkWebInteractionRegistry.h" + + +namespace mitk { + + WebInteractionRegistry::WebInteractionRegistry() + { + } + + +} // end of namespace mitk