diff --git a/Modules/ModuleList.cmake b/Modules/ModuleList.cmake index 62a0c5d924..c754cee448 100644 --- a/Modules/ModuleList.cmake +++ b/Modules/ModuleList.cmake @@ -1,80 +1,81 @@ # The entries in the mitk_modules list must be # ordered according to their dependencies. set(mitk_modules Core CommandLine AppUtil DCMTesting RDF LegacyIO DataTypesExt Overlays LegacyGL AlgorithmsExt MapperExt DICOMReader DICOMReaderServices DICOMTesting SceneSerializationBase PlanarFigure ImageDenoising ImageExtraction ImageStatistics LegacyAdaptors SceneSerialization Gizmo GraphAlgorithms Multilabel ContourModel SurfaceInterpolation Segmentation PlanarFigureSegmentation OpenViewCore QtWidgets QtWidgetsExt QtWidgetsWeb QmlItems SegmentationUI DiffusionImaging GPGPU OpenIGTLink IGTBase IGT CameraCalibration RigidRegistration RigidRegistrationUI DeformableRegistration DeformableRegistrationUI OpenCL OpenCVVideoSupport QtOverlays ToFHardware ToFProcessing ToFUI US USUI DicomUI Simulation Remeshing Python QtPython Persistence OpenIGTLinkUI IGTUI VtkShaders DicomRT RTUI IOExt XNAT TubeGraph BiophotonicsHardware Classification TumorInvasionAnalysis MatchPointRegistration MatchPointRegistrationUI + WebInteraction ) if(MITK_ENABLE_PIC_READER) list(APPEND mitk_modules IpPicSupportIO) endif() diff --git a/Modules/WebInteraction/files.cmake b/Modules/WebInteraction/files.cmake index 02d5495809..dc204fb168 100644 --- a/Modules/WebInteraction/files.cmake +++ b/Modules/WebInteraction/files.cmake @@ -1,18 +1,18 @@ file(GLOB_RECURSE H_FILES RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/include/*") set(CPP_FILES - mitkXnatSessionTracker.cpp + mitkWebInteractionRegistry.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 index f96490c309..fb4de08f4c 100644 --- a/Modules/WebInteraction/include/mitkWebInteractionRegistry.h +++ b/Modules/WebInteraction/include/mitkWebInteractionRegistry.h @@ -1,40 +1,39 @@ /*=================================================================== 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; + //us::ModuleContext* m_Context; }; } // end of namespace mitk -#endif // MITKXNATSESSIONTRACKER_H +#endif // MITKWEBINTERACTIONREGISTRY_H