osrm-backend/include/storage/storage.hpp

26 lines
362 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
{
public:
Storage(const DataPaths& data_paths);
int Run();
private:
DataPaths paths;
};
}
}
#endif