testConfig.cpp 389 B

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