ctkAbstractPluginFactoryTest1.cpp 852 B

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