Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
Step8.h
Go to the documentation of this file.
1 /*===================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center,
6 Division of Medical and Biological Informatics.
7 All rights reserved.
8 
9 This software is distributed WITHOUT ANY WARRANTY; without
10 even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE.
12 
13 See LICENSE.txt or http://www.mitk.org for details.
14 
15 ===================================================================*/
16 
17 #ifndef STEP8_H
18 #define STEP8_H
19 
20 #include "Step6.h"
21 
22 #ifndef DOXYGEN_IGNORE
23 class Step8 : public Step6
24 {
25  Q_OBJECT
26 public:
27  Step8(int argc, char *argv[], QWidget *parent = nullptr);
28  ~Step8() {}
29 protected:
30  virtual void SetupWidgets() override;
31 protected slots:
32 };
33 #endif // DOXYGEN_IGNORE
34 
35 #endif // STEP8_H
36 
Step8(int argc, char *argv[], QWidget *parent=nullptr)
As Step6, but with QmitkStdMultiWidget as widget.
Definition: Step8.cpp:28
Definition: Step6.h:32
~Step8()
Definition: Step8.h:28
virtual void SetupWidgets() override
Definition: Step8.cpp:32
Definition: Step8.h:23