123456789101112131415161718192021222324252627 |
- #include <core/basics/Config.h>
- using namespace NICE;
- using namespace std;
- int main (int argc, char **argv)
- {
- #ifndef WIN32
- std::set_terminate(__gnu_cxx::__verbose_terminate_handler);
- #endif
- Config conf ( argc, argv );
- conf.store(cout);
- return 0;
- }
|