示例#1
0
 /// <summary> Explicit constructor. </summary>
 public GetMapResult(NavMsgs.OccupancyGrid Map)
 {
     this.Map = Map;
 }
示例#2
0
 /// <summary> Constructor with buffer. </summary>
 internal GetMapResult(ref Buffer b)
 {
     Map = new NavMsgs.OccupancyGrid(ref b);
 }
示例#3
0
 /// <summary> Constructor for empty message. </summary>
 public GetMapResult()
 {
     Map = new NavMsgs.OccupancyGrid();
 }