123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /*=auto=========================================================================
- Portions (c) Copyright 2005 Brigham and Women's Hospital (BWH)
- All Rights Reserved.
- See Doc/copyright/copyright.txt
- or http://www.slicer.org/copyright/copyright.txt for details.
- Program: 3D Slicer
- =========================================================================auto=*/
- #ifndef __ctkDICOMWidgetsPythonQtDecorators_h
- #define __ctkDICOMWidgetsPythonQtDecorators_h
- // Qt includes
- #include <QObject>
- // PythonQt includes
- #include <PythonQt.h>
- // CTK includes
- #include <ctkWorkflowStep.h>
- #include <ctkWorkflowTransitions.h>
- #include "ctkDICOMWidgetsExport.h"
- // NOTE:
- //
- // For decorators it is assumed that the methods will never be called
- // with the self argument as NULL. The self argument is the first argument
- // for non-static methods.
- //
- /// \ingroup DICOMWidgets
- class CTK_DICOM_WIDGETS_EXPORT ctkDICOMWidgetsPythonQtDecorators : public QObject
- {
- Q_OBJECT
- public:
- ctkDICOMWidgetsPythonQtDecorators()
- {
- }
- public slots:
- //
- // None yet - refer to other libs for examples
- //
- };
- #endif
|