/** * @file testConfig.cpp * @brief test configuration * @author Erik Rodner * @date 09/08/2008 */ #include using namespace NICE; using namespace std; /** test configuration */ int main (int argc, char **argv) { std::set_terminate(__gnu_cxx::__verbose_terminate_handler); Config conf ( argc, argv ); conf.store(cout); return 0; }