ctkMatrixWidgetTest1.cxx 778 B

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