00001 // Copyright (C) 2005-2009 Christopher Mire, Mark McKelvy 00002 // Copyright (C) 2005-2009 University of Louisiana at Lafayette 00003 00004 #ifndef CAJUN_CBSTAT_RNDF_CREATOR_INFO_H 00005 #define CAJUN_CBSTAT_RNDF_CREATOR_INFO_H 00006 00007 #include <string> 00008 #include <glib.h> 00009 00010 namespace cajun 00011 { 00012 class rndf_creator_info_t 00013 { 00014 public: 00015 rndf_creator_info_t (){ 00016 waypoint = 1; 00017 lane_width = 12; 00018 is_complete = FALSE; 00019 }; 00020 00021 std::string rndf_name; 00022 std::string seg_lane; 00023 guint waypoint; 00024 guint lane_width; 00025 std::string left_boundary; 00026 std::string right_boundary; 00027 gboolean is_complete; 00028 }; 00029 00030 }; 00031 00032 #endif 00033