osrm-backend/include/storage/storage.hpp
2016-04-05 22:58:32 +02:00

27 lines
303 B
C++

#ifndef STORAGE_HPP
#define STORAGE_HPP
#include "storage/storage_config.hpp"
#include <boost/filesystem/path.hpp>
#include <string>
namespace osrm
{
namespace storage
{
class Storage
{
public:
Storage(StorageConfig config);
int Run();
private:
StorageConfig config;
};
}
}
#endif