testConfig.cpp 461 B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * @file testConfig.cpp
  3. * @brief test configuration
  4. * @author Erik Rodner
  5. * @date 09/08/2008
  6. */
  7. #include <core/basics/Config.h>
  8. using namespace NICE;
  9. using namespace std;
  10. /**
  11. test configuration
  12. */
  13. int main (int argc, char **argv)
  14. {
  15. #ifndef WIN32
  16. #ifndef __clang__
  17. #ifndef __llvm__
  18. std::set_terminate(__gnu_cxx::__verbose_terminate_handler);
  19. #endif
  20. #endif
  21. #endif
  22. Config conf ( argc, argv );
  23. conf.store(cout);
  24. return 0;
  25. }