Removed all header file includes from typedef.h

This commit is contained in:
DennisOSRM 2012-07-02 16:00:00 +02:00
parent f01670db80
commit 1326c5a01f
3 changed files with 3 additions and 6 deletions

View File

@ -64,4 +64,6 @@ struct NodeCoords {
}
};
typedef NodeCoords<NodeID> NodeInfo;
#endif //_NODE_COORDS_H

View File

@ -34,6 +34,7 @@ or see http://www.gnu.org/licenses/agpl.txt.
#include "../DataStructures/ExtractorStructs.h"
#include "../DataStructures/ImportEdge.h"
#include "../DataStructures/NodeCoords.h"
#include "../typedefs.h"
typedef boost::unordered_map<NodeID, NodeID> ExternalNodeMap;

View File

@ -63,10 +63,4 @@ typedef unsigned int EdgeWeight;
static const NodeID SPECIAL_NODEID = UINT_MAX;
static const EdgeID SPECIAL_EDGEID = UINT_MAX;
#include "DataStructures/NodeCoords.h"
typedef NodeCoords<NodeID> NodeInfo;
//#include "DataStructures/NodeInformationHelpDesk.h"
//#include "Contractor/ContractionCleanup.h"
//typedef ContractionCleanup::Edge::EdgeData EdgeData;
#endif /* TYPEDEFS_H_ */