@brief Shutdown handler function - forcing the server pointer to be global.
| 43 | |
| 44 | /// @brief Shutdown handler function - forcing the server pointer to be global. |
| 45 | void handleShutdown() { |
| 46 | out << "Received shutdown signal..." << endl; |
| 47 | server->signalStop(); |
| 48 | } |
| 49 | |
| 50 | int main(int argc, char *argv[]) { |
| 51 | std::string configName(osvr::server::getDefaultConfigFilename()); |
nothing calls this directly
no test coverage detected