Removal of v8 as it sucked big time during integration and first

(partially) working parsing with LUA as the scripting engine.
This commit is contained in:
DennisOSRM
2012-08-29 18:33:18 +02:00
parent 4c58674393
commit 1412c5db42
14 changed files with 901 additions and 872 deletions
+5
View File
@@ -22,6 +22,8 @@ or see http://www.gnu.org/licenses/agpl.txt.
#define IMPORTNODE_H_
#include "NodeCoords.h"
#include "../DataStructures/HashTable.h"
struct _Node : NodeInfo{
_Node(int _lat, int _lon, unsigned int _id, bool _bollard, bool _trafficLight) : NodeInfo(_lat, _lon, _id), bollard(_bollard), trafficLight(_trafficLight) {}
@@ -38,7 +40,10 @@ struct _Node : NodeInfo{
}
bool bollard;
bool trafficLight;
};
struct ImportNode : public _Node {
HashTable<std::string, std::string> keyVals;
};
#endif /* IMPORTNODE_H_ */