Moving more functions into LUA

This commit is contained in:
DennisOSRM 2012-11-03 08:18:39 +01:00
parent 24321d860c
commit 55e58375eb
2 changed files with 1 additions and 9 deletions

View File

@ -563,10 +563,6 @@ private:
unsigned groupCount; unsigned groupCount;
unsigned blockCount; unsigned blockCount;
/* Function pointer for nodes */
// bool (*nodeCallback)(_Node);
// bool (*wayCallback)(_Way);
// bool (*restrictionCallback)(_RawRestrictionContainer);
ExtractorCallbacks * externalMemory; ExtractorCallbacks * externalMemory;
/* the input stream to parse */ /* the input stream to parse */
std::fstream input; std::fstream input;

View File

@ -298,11 +298,7 @@ private:
/* Input Reader */ /* Input Reader */
xmlTextReaderPtr inputReader; xmlTextReaderPtr inputReader;
/* Function pointer for nodes */ //holds the callback functions and storage for our temporary data
// bool (*nodeCallback)(_Node);
// bool (*wayCallback)(_Way);
// bool (*restrictionCallback)(_RawRestrictionContainer);
ExtractorCallbacks * externalMemory; ExtractorCallbacks * externalMemory;
lua_State *myLuaState; lua_State *myLuaState;