ctkDICOMWidgetsPythonQtDecorators.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*=auto=========================================================================
  2. Portions (c) Copyright 2005 Brigham and Women's Hospital (BWH)
  3. All Rights Reserved.
  4. See Doc/copyright/copyright.txt
  5. or http://www.slicer.org/copyright/copyright.txt for details.
  6. Program: 3D Slicer
  7. =========================================================================auto=*/
  8. #ifndef __ctkDICOMWidgetsPythonQtDecorators_h
  9. #define __ctkDICOMWidgetsPythonQtDecorators_h
  10. // Qt includes
  11. #include <QObject>
  12. // PythonQt includes
  13. #include <PythonQt.h>
  14. // CTK includes
  15. #include <ctkWorkflowStep.h>
  16. #include <ctkWorkflowTransitions.h>
  17. #include "ctkDICOMWidgetsExport.h"
  18. // NOTE:
  19. //
  20. // For decorators it is assumed that the methods will never be called
  21. // with the self argument as NULL. The self argument is the first argument
  22. // for non-static methods.
  23. //
  24. /// \ingroup DICOMWidgets
  25. class CTK_DICOM_WIDGETS_EXPORT ctkDICOMWidgetsPythonQtDecorators : public QObject
  26. {
  27. Q_OBJECT
  28. public:
  29. ctkDICOMWidgetsPythonQtDecorators()
  30. {
  31. }
  32. public slots:
  33. //
  34. // None yet - refer to other libs for examples
  35. //
  36. };
  37. #endif