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