osrm-backend/Extractor/Extractor.h

14 lines
222 B
C
Raw Normal View History

2014-07-02 09:07:27 -04:00
#ifndef EXTRACTOR_H_
#define EXTRACTOR_H_
2014-07-02 08:05:37 -04:00
2014-07-10 08:45:59 -04:00
#include <string>
2014-07-02 08:05:37 -04:00
#include <boost/filesystem.hpp>
2014-07-02 08:05:37 -04:00
/** \brief Class of 'extract' utility. */
struct Extractor
2014-07-02 08:05:37 -04:00
{
2014-07-10 08:45:59 -04:00
int Run(int argc, char *argv[]);
2014-07-02 08:05:37 -04:00
};
2014-07-02 09:07:27 -04:00
#endif /* EXTRACTOR_H_ */