ctkAbstractQObjectFactoryTest1.cpp 854 B

123456789101112131415161718192021222324252627282930313233343536
  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. // CTK includes
  11. #include "ctkAbstractQObjectFactory.h"
  12. #include "ctkModelTester.h"
  13. // Qt includes
  14. #include <QApplication>
  15. // STD includes
  16. #include <cstdlib>
  17. #include <iostream>
  18. int ctkAbstractQObjectFactoryTest1(int argc, char * argv [] )
  19. {
  20. QApplication app(argc, argv);
  21. ctkAbstractQObjectFactory< ctkModelTester > ctkObject;
  22. return EXIT_SUCCESS;
  23. }