ctkDICOMServerNodeWidget.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 "ctkDICOMServerNodeWidget.h"
  12. #include "ui_ctkDICOMServerNodeWidget.h"
  13. //----------------------------------------------------------------------------
  14. class ctkDICOMServerNodeWidgetPrivate: public ctkPrivate<ctkDICOMServerNodeWidget>,
  15. public Ui_ctkDICOMServerNodeWidget
  16. {
  17. public:
  18. ctkDICOMServerNodeWidgetPrivate(){}
  19. };
  20. //----------------------------------------------------------------------------
  21. // ctkDICOMServerNodeWidgetPrivate methods
  22. //----------------------------------------------------------------------------
  23. // ctkDICOMServerNodeWidget methods
  24. //----------------------------------------------------------------------------
  25. ctkDICOMServerNodeWidget::ctkDICOMServerNodeWidget(QWidget* _parent):Superclass(_parent)
  26. {
  27. CTK_INIT_PRIVATE(ctkDICOMServerNodeWidget);
  28. CTK_D(ctkDICOMServerNodeWidget);
  29. d->setupUi(this);
  30. }
  31. //----------------------------------------------------------------------------
  32. ctkDICOMServerNodeWidget::~ctkDICOMServerNodeWidget()
  33. {
  34. }