ctkPimplTest1.cpp 930 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. // Qt includes
  11. #include <QApplication>
  12. // CTK includes
  13. #include <ctkPimpl.h>
  14. // STD includes
  15. #include <cstdlib>
  16. #include <iostream>
  17. //-----------------------------------------------------------------------------
  18. class ctkPimplHelper
  19. {
  20. public:
  21. };
  22. //-----------------------------------------------------------------------------
  23. int ctkPimplTest1(int argc, char * argv [] )
  24. {
  25. QApplication app(argc, argv);
  26. return EXIT_SUCCESS;
  27. }