Slicer  5.1
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
qMRMLThreeDViewPlugin.h
Go to the documentation of this file.
1 #ifndef __qMRMLThreeDViewPlugin_h
2 #define __qMRMLThreeDViewPlugin_h
3 
5 
6 class QMRML_WIDGETS_PLUGINS_EXPORT qMRMLThreeDViewPlugin :
7  public QObject,
9 {
10  Q_OBJECT
11 
12 public:
13  qMRMLThreeDViewPlugin(QObject *_parent = nullptr);
14 
15  QWidget *createWidget(QWidget *_parent) override;
16  QString domXml() const override;
17 // QIcon icon() const;
18  QString includeFile() const override;
19  bool isContainer() const override;
20  QString name() const override;
21 
22 };
23 
24 #endif