ctkXIPAdaptor.cxx 929 B

123456789101112131415161718192021222324252627282930313233343536
  1. // Qt includes
  2. #include <QDebug>
  3. // ctkXIPAdaptor includes
  4. #include "ctkXIPAdaptor.h"
  5. //----------------------------------------------------------------------------
  6. class ctkXIPAdaptorPrivate: public qCTKPrivate<ctkXIPAdaptor>
  7. {
  8. public:
  9. ctkXIPAdaptorPrivate();
  10. };
  11. //----------------------------------------------------------------------------
  12. // ctkXIPAdaptorPrivate methods
  13. //------------------------------------------------------------------------------
  14. ctkXIPAdaptorPrivate::ctkXIPAdaptorPrivate()
  15. {
  16. }
  17. //----------------------------------------------------------------------------
  18. // ctkXIPAdaptorWidget methods
  19. //------------------------------------------------------------------------------
  20. ctkXIPAdaptor::ctkXIPAdaptor(QObject* _parent): Superclass(_parent)
  21. {
  22. QCTK_INIT_PRIVATE(ctkXIPAdaptor);
  23. }
  24. //----------------------------------------------------------------------------
  25. ctkXIPAdaptor::~ctkXIPAdaptor()
  26. {
  27. }