00001 /*========================================================================= 00002 00003 Library: CTK 00004 00005 Copyright (c) 2010 Kitware Inc. 00006 00007 Licensed under the Apache License, Version 2.0 (the "License"); 00008 you may not use this file except in compliance with the License. 00009 You may obtain a copy of the License at 00010 00011 http://www.commontk.org/LICENSE 00012 00013 Unless required by applicable law or agreed to in writing, software 00014 distributed under the License is distributed on an "AS IS" BASIS, 00015 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00016 See the License for the specific language governing permissions and 00017 limitations under the License. 00018 00019 =========================================================================*/ 00020 00021 // ctkDICOMWidgets includes 00022 #include "ctkDICOMCommandWidget.h" 00023 #include "ui_ctkDICOMCommandWidget.h" 00024 00025 //---------------------------------------------------------------------------- 00026 class ctkDICOMCommandWidgetPrivate: public ctkPrivate<ctkDICOMCommandWidget>, 00027 public Ui_ctkDICOMCommandWidget 00028 { 00029 public: 00030 ctkDICOMCommandWidgetPrivate(){} 00031 }; 00032 00033 //---------------------------------------------------------------------------- 00034 // ctkDICOMCommandWidgetPrivate methods 00035 00036 00037 //---------------------------------------------------------------------------- 00038 // ctkDICOMCommandWidget methods 00039 00040 //---------------------------------------------------------------------------- 00041 ctkDICOMCommandWidget::ctkDICOMCommandWidget(QWidget* _parent):Superclass(_parent) 00042 { 00043 CTK_INIT_PRIVATE(ctkDICOMCommandWidget); 00044 CTK_D(ctkDICOMCommandWidget); 00045 00046 d->setupUi(this); 00047 } 00048 00049 //---------------------------------------------------------------------------- 00050 ctkDICOMCommandWidget::~ctkDICOMCommandWidget() 00051 { 00052 } 00053 00054