Slicer 4.2
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
qSlicerROIModuleWidget.h
Go to the documentation of this file.
00001 /*==============================================================================
00002 
00003   Program: 3D Slicer
00004 
00005   Copyright (c) Kitware Inc.
00006 
00007   See COPYRIGHT.txt
00008   or http://www.slicer.org/copyright/copyright.txt for details.
00009 
00010   Unless required by applicable law or agreed to in writing, software
00011   distributed under the License is distributed on an "AS IS" BASIS,
00012   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00013   See the License for the specific language governing permissions and
00014   limitations under the License.
00015 
00016   This file was originally developed by Julien Finet, Kitware Inc.
00017   and was partially funded by NIH grant 3P41RR013218-12S1
00018 
00019 ==============================================================================*/
00020 
00021 #ifndef __qSlicerROIModuleWidget_h
00022 #define __qSlicerROIModuleWidget_h
00023 
00024 // CTK includes
00025 #include <ctkPimpl.h>
00026 
00027 // SlicerQt includes
00028 #include "qSlicerAbstractModuleWidget.h"
00029 #include "qSlicerModulesCoreExport.h"
00030 
00031 class qSlicerROIModuleWidgetPrivate;
00032 
00033 class Q_SLICER_MODULES_CORE_EXPORT qSlicerROIModuleWidget :
00034   public qSlicerAbstractModuleWidget
00035 {
00036   Q_OBJECT
00037 public:
00038   qSlicerROIModuleWidget(QWidget *parentWidget = 0);
00039   virtual ~qSlicerROIModuleWidget();
00040 
00041 protected:
00042   virtual void setup();
00043 
00044 protected:
00045   QScopedPointer<qSlicerROIModuleWidgetPrivate> d_ptr;
00046 
00047 private:
00048   Q_DECLARE_PRIVATE(qSlicerROIModuleWidget);
00049   Q_DISABLE_COPY(qSlicerROIModuleWidget);
00050 };
00051 
00052 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines