ctkDICOMCommandWidget.cpp 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*=========================================================================
  2. Library: CTK
  3. Copyright (c) Kitware Inc.
  4. All rights reserved.
  5. Distributed under a BSD License. See LICENSE.txt file.
  6. This software is distributed "AS IS" WITHOUT ANY WARRANTY; without even
  7. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the above copyright notice for more information.
  9. =========================================================================*/
  10. // ctkDICOMWidgets includes
  11. #include "ctkDICOMCommandWidget.h"
  12. #include "ui_ctkDICOMCommandWidget.h"
  13. //----------------------------------------------------------------------------
  14. class ctkDICOMCommandWidgetPrivate: public ctkPrivate<ctkDICOMCommandWidget>,
  15. public Ui_ctkDICOMCommandWidget
  16. {
  17. public:
  18. ctkDICOMCommandWidgetPrivate(){}
  19. };
  20. //----------------------------------------------------------------------------
  21. // ctkDICOMCommandWidgetPrivate methods
  22. //----------------------------------------------------------------------------
  23. // ctkDICOMCommandWidget methods
  24. //----------------------------------------------------------------------------
  25. ctkDICOMCommandWidget::ctkDICOMCommandWidget(QWidget* _parent):Superclass(_parent)
  26. {
  27. CTK_INIT_PRIVATE(ctkDICOMCommandWidget);
  28. CTK_D(ctkDICOMCommandWidget);
  29. d->setupUi(this);
  30. }
  31. //----------------------------------------------------------------------------
  32. ctkDICOMCommandWidget::~ctkDICOMCommandWidget()
  33. {
  34. }