unpacking target correctly, also partial unpacking origin and destination are on the very same packed edge

This commit is contained in:
Dennis Luxen
2014-03-03 18:47:34 +01:00
parent eca09e6c81
commit 6b91d6692f
6 changed files with 54 additions and 21 deletions
+3 -1
View File
@@ -25,14 +25,16 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "RequestHandler.h"
#include "APIGrammar.h"
#include "RequestHandler.h"
#include "Http/Request.h"
#include "../Library/OSRM.h"
#include "../Util/SimpleLogger.h"
#include "../Util/StringUtil.h"
#include "../typedefs.h"
#include <osrm/Reply.h>
#include <osrm/RouteParameters.h>
#include <boost/foreach.hpp>
+5 -4
View File
@@ -28,10 +28,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef REQUEST_HANDLER_H
#define REQUEST_HANDLER_H
#include "Http/Request.h"
#include <osrm/Reply.h>
#include <boost/noncopyable.hpp>
#include <string>
@@ -41,6 +37,11 @@ struct APIGrammar;
struct RouteParameters;
class OSRM;
namespace http {
class Reply;
struct Request;
}
class RequestHandler : private boost::noncopyable {
public: