ctkAbstractLibraryFactoryTest1.cpp 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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 "ctkAbstractLibraryFactory.h"
  12. // Qt includes
  13. #include <QApplication>
  14. // STD includes
  15. #include <cstdlib>
  16. #include <iostream>
  17. class BaseClassHelperType
  18. {
  19. public:
  20. };
  21. class FactoryItemHelper
  22. {
  23. public:
  24. FactoryItemHelper( QString &, QString )
  25. {
  26. }
  27. void setSymbols(const QStringList& )
  28. {
  29. }
  30. };
  31. int ctkAbstractLibraryFactoryTest1(int argc, char * argv [] )
  32. {
  33. QApplication app(argc, argv);
  34. // typedef ctkAbstractLibraryFactory < BaseClassHelperType, FactoryItemHelper > FactoryType;
  35. // FactoryType ctkObject;
  36. return EXIT_SUCCESS;
  37. }