// file : loader/options.cli // copyright : Copyright (c) 2014-2015 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file include ; include ; class options { bool --help {"Print usage information and exit."}; bool --version {"Print version and exit."}; std::string --db-host = "localhost" { "", "Connect database server using specified host or socket directory." }; std::uint16_t --db-port = 5432 { "", "Connect database server using specified port." }; };