2016-01-07 13:19:55 -05:00
|
|
|
#ifndef STORAGE_HPP
|
|
|
|
#define STORAGE_HPP
|
|
|
|
|
2016-03-22 14:30:18 -04:00
|
|
|
#include "storage/storage_config.hpp"
|
|
|
|
|
2016-01-07 13:19:55 -05:00
|
|
|
#include <boost/filesystem/path.hpp>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace osrm
|
|
|
|
{
|
|
|
|
namespace storage
|
|
|
|
{
|
|
|
|
class Storage
|
|
|
|
{
|
2016-03-03 08:26:13 -05:00
|
|
|
public:
|
2016-03-22 14:30:18 -04:00
|
|
|
Storage(StorageConfig config);
|
2016-01-07 13:19:55 -05:00
|
|
|
int Run();
|
2016-03-03 08:26:13 -05:00
|
|
|
|
|
|
|
private:
|
2016-03-22 14:30:18 -04:00
|
|
|
StorageConfig config;
|
2016-01-07 13:19:55 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|