ctkDICOMLocationWidget.h 982 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. #ifndef __ctkDICOMLocationWidget_h
  11. #define __ctkDICOMLocationWidget_h
  12. // Qt includes
  13. #include <QWidget>
  14. // CTK includes
  15. #include <ctkPimpl.h>
  16. #include "CTKDICOMWidgetsExport.h"
  17. class ctkDICOMLocationWidgetPrivate;
  18. class CTK_DICOM_WIDGETS_EXPORT ctkDICOMLocationWidget : public QWidget
  19. {
  20. public:
  21. typedef QWidget Superclass;
  22. explicit ctkDICOMLocationWidget(QWidget* parent=0);
  23. virtual ~ctkDICOMLocationWidget();
  24. private:
  25. CTK_DECLARE_PRIVATE(ctkDICOMLocationWidget);
  26. };
  27. #endif