ctkXIPAdaptor.cpp 1.4 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. // Qt includes
  11. #include <QDebug>
  12. // ctkXIPAdaptor includes
  13. #include "ctkXIPAdaptor.h"
  14. //----------------------------------------------------------------------------
  15. class ctkXIPAdaptorPrivate: public ctkPrivate<ctkXIPAdaptor>
  16. {
  17. public:
  18. ctkXIPAdaptorPrivate();
  19. };
  20. //----------------------------------------------------------------------------
  21. // ctkXIPAdaptorPrivate methods
  22. //------------------------------------------------------------------------------
  23. ctkXIPAdaptorPrivate::ctkXIPAdaptorPrivate()
  24. {
  25. }
  26. //----------------------------------------------------------------------------
  27. // ctkXIPAdaptorWidget methods
  28. //------------------------------------------------------------------------------
  29. ctkXIPAdaptor::ctkXIPAdaptor(QObject* _parent): Superclass(_parent)
  30. {
  31. CTK_INIT_PRIVATE(ctkXIPAdaptor);
  32. }
  33. //----------------------------------------------------------------------------
  34. ctkXIPAdaptor::~ctkXIPAdaptor()
  35. {
  36. }