Moved pathinfo struct to common place
This commit is contained in:
parent
8502b62c77
commit
92b467ae77
@ -27,6 +27,11 @@ or see http://www.gnu.org/licenses/agpl.txt.
|
||||
#include "HashTable.h"
|
||||
#include "Util.h"
|
||||
|
||||
struct _PathData {
|
||||
_PathData(NodeID n) : node(n) { }
|
||||
NodeID node;
|
||||
};
|
||||
|
||||
/* Default Speed Profile:
|
||||
motorway 110
|
||||
motorway_link 90
|
||||
|
@ -29,11 +29,6 @@ or see http://www.gnu.org/licenses/agpl.txt.
|
||||
#ifndef BASICDESCRIPTOR_H_
|
||||
#define BASICDESCRIPTOR_H_
|
||||
|
||||
struct _PathData {
|
||||
_PathData(NodeID n) : node(n) { }
|
||||
NodeID node;
|
||||
};
|
||||
|
||||
class BasicDescriptor {
|
||||
public:
|
||||
template<class SearchEngineT>
|
||||
|
Loading…
Reference in New Issue
Block a user