1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef SERVER_INIT_HH_ #define SERVER_INIT_HH_ #include "server/shared.hh" #include "shared/init.hh" namespace server { const shared::args_t& get_options(); bool parse_arg(const int& c, const char* const arg); } // namespace server #endif