Skip to content
Snippets Groups Projects
Commit 5a3a24f8 authored by Sergi Hernandez's avatar Sergi Hernandez
Browse files

Added the new reference data types.

Added the forward declaration of all classes.
parent 6676e006
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,20 @@
#define DEFAULT_SCALE_FACTOR 1.0
#define DEFAULT_MIN_ROAD_LENGTH 0.1
#include <map>
class COpendriveLane;
class COpendriveRoadNode;
class COpendriveRoadSegment;
class COpendriveSignal;
class COpendriveObject;
class COpendriveRoad;
class COpendriveLink;
typedef std::map<COpendriveRoadNode *,COpendriveRoadNode *> node_up_ref_t;
typedef std::map<COpendriveLane *,COpendriveLane *> lane_up_ref_t;
typedef std::map<COpendriveRoadSegment *,COpendriveRoadSegment *> segment_up_ref_t;
typedef struct
{
double s;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment