Medical Imaging Interaction Toolkit  2018.4.99-389bf124
Medical Imaging Interaction Toolkit
mitkQtPerspectiveItem.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 (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef _PerspectiveItem
14 #define _PerspectiveItem
15 
16 #include <QStandardItem>
17 #include <berryPlatformUI.h>
18 
19 namespace mitk
20 {
21 
22 class QtPerspectiveItem : public QStandardItem
23 {
24 public:
25  QtPerspectiveItem(QString string) :
26  QStandardItem(string)
27  {
28  }
29  QtPerspectiveItem(const QIcon& icon, QString string) :
30  QStandardItem(icon, string)
31  {
32  }
33 
35 
36  QStringList m_Tags;
37  QString m_Description;
38 private:
39 
40 };
41 
42 }
43 
44 #endif
DataCollection - Class to facilitate loading/accessing structured data.
QtPerspectiveItem(const QIcon &icon, QString string)
berry::IPerspectiveDescriptor::Pointer m_Perspective