/*========================================================================= Library: CTK Copyright (c) Kitware Inc. All rights reserved. Distributed under a BSD License. See LICENSE.txt file. This software is distributed "AS IS" WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ // ctkDICOMWidgets includes #include "ctkDICOMServerNodeWidget.h" #include "ui_ctkDICOMServerNodeWidget.h" //---------------------------------------------------------------------------- class ctkDICOMServerNodeWidgetPrivate: public ctkPrivate, public Ui_ctkDICOMServerNodeWidget { public: ctkDICOMServerNodeWidgetPrivate(){} }; //---------------------------------------------------------------------------- // ctkDICOMServerNodeWidgetPrivate methods //---------------------------------------------------------------------------- // ctkDICOMServerNodeWidget methods //---------------------------------------------------------------------------- ctkDICOMServerNodeWidget::ctkDICOMServerNodeWidget(QWidget* _parent):Superclass(_parent) { CTK_INIT_PRIVATE(ctkDICOMServerNodeWidget); CTK_D(ctkDICOMServerNodeWidget); d->setupUi(this); } //---------------------------------------------------------------------------- ctkDICOMServerNodeWidget::~ctkDICOMServerNodeWidget() { }