break out Coordinate in compile unit

This commit is contained in:
Dennis Luxen
2013-12-13 17:26:57 -05:00
parent 9b09c9f0c3
commit b030fe7db2
17 changed files with 266 additions and 220 deletions
+5 -1
View File
@@ -39,11 +39,15 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <string>
class RequestHandler : private boost::noncopyable {
public:
typedef APIGrammar<std::string::iterator, RouteParameters> APIGrammarParser;
explicit RequestHandler();
RequestHandler();
void handle_request(const http::Request& req, http::Reply& rep);
void RegisterRoutingMachine(OSRM * osrm);
private:
OSRM * routing_machine;
};