Example #1
0
ServerRef Server::create( const ci::DataSourceRef &jsonSettingsFile, boost::asio::io_service &service, bool thread )
{
	return ServerRef();  //new Server( jsonSettingsFile, service, thread ) );
}
Example #2
0
ServerRef Server::create(const ServerDescription& description, 
                         const Settings& settings) {
    return ServerRef(new Server(description, settings));
}