ctkXIPAdaptor.h 941 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 __ctkXIPAdaptor_h
  11. #define __ctkXIPAdaptor_h
  12. // Qt includes
  13. #include <QObject>
  14. // CTK includes
  15. #include <ctkPimpl.h>
  16. #include "CTKVisualizationXIPExport.h"
  17. class ctkXIPAdaptorPrivate;
  18. class CTK_VISUALIZATION_XIP_EXPORT ctkXIPAdaptor : public QObject
  19. {
  20. Q_OBJECT
  21. public:
  22. typedef QObject Superclass;
  23. explicit ctkXIPAdaptor(QObject* parent = 0);
  24. virtual ~ctkXIPAdaptor();
  25. private:
  26. CTK_DECLARE_PRIVATE(ctkXIPAdaptor);
  27. };
  28. #endif