Slicer 4.2
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
qSlicerObject.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 __qSlicerObject_h
00022 #define __qSlicerObject_h
00023 
00024 // Qt includes
00025 #include <QScopedPointer>
00026 
00027 // CTK includes
00028 #include "qSlicerBaseQTCoreExport.h"
00029 
00030 class vtkMRMLScene;
00031 class qSlicerObjectPrivate;
00032 
00033 class Q_SLICER_BASE_QTCORE_EXPORT qSlicerObject
00034 {
00035 public:
00036   qSlicerObject();
00037   virtual ~qSlicerObject();
00038 
00040   vtkMRMLScene* mrmlScene() const;
00041 
00043   virtual void setMRMLScene(vtkMRMLScene*);
00044 
00045 protected:
00046   QScopedPointer<qSlicerObjectPrivate> d_ptr;
00047 
00048 private:
00049   Q_DECLARE_PRIVATE(qSlicerObject);
00050   Q_DISABLE_COPY(qSlicerObject);
00051 };
00052 
00053 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines