testConfig.cpp 410 B

123456789101112131415161718192021222324252627
  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. std::set_terminate(__gnu_cxx::__verbose_terminate_handler);
  17. #endif
  18. Config conf ( argc, argv );
  19. conf.store(cout);
  20. return 0;
  21. }