osrm-backend/extractor/extractor.hpp

14 lines
225 B
C++
Raw Normal View History

#ifndef EXTRACTOR_HPP
#define EXTRACTOR_HPP
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
};
#endif /* EXTRACTOR_HPP */