Initial libosrm API docs

This commit is contained in:
Daniel J. Hofmann
2016-04-01 17:23:41 +02:00
committed by Patrick Niklaus
parent 9b52dd8bf7
commit c6c25e609b
13 changed files with 293 additions and 9 deletions
+13 -1
View File
@@ -7,9 +7,21 @@ namespace osrm
{
namespace storage
{
struct StorageConfig
/**
* Configures OSRM's file storage paths.
*
* \see OSRM, EngineConfig
*/
struct StorageConfig final
{
StorageConfig() = default;
/**
* Constructs a storage configuration setting paths based on a base path.
*
* \param base The base path (e.g. france.pbf.osrm) to derive auxiliary file suffixes from.
*/
StorageConfig(const boost::filesystem::path &base);
bool IsValid() const;