osrm-backend/include/storage/storage.hpp

27 lines
367 B
C++
Raw Normal View History

#ifndef STORAGE_HPP
#define STORAGE_HPP
#include <boost/filesystem/path.hpp>
#include <unordered_map>
#include <string>
namespace osrm
{
namespace storage
{
using DataPaths = std::unordered_map<std::string, boost::filesystem::path>;
class Storage
{
2016-03-03 08:26:13 -05:00
public:
Storage(const DataPaths &data_paths);
int Run();
2016-03-03 08:26:13 -05:00
private:
DataPaths paths;
};
}
}
#endif