View Javadoc

1   package cz.cuni.amis.pogamut.usar2004.agent.module.geometry;
2   
3   import cz.cuni.amis.pogamut.usar2004.agent.USAR2004Bot;
4   import cz.cuni.amis.pogamut.usar2004.agent.module.datatypes.GeometryType;
5   
6   /**
7    * Geometry message representative for Aerial vehicles..
8    *
9    * @author vejmanm
10   */
11  public class GeoAerial extends VehicleGeometry
12  {
13      public static final GeometryType type = GeometryType.AERIAL_VEHICLE;
14  
15      /**
16       * Ctor. Geometry type describes particular subject about which we want to
17       * know about. It is used to distinguish incoming message from the server.
18       */
19      public GeoAerial(USAR2004Bot bot)
20      {
21          super(type);
22      }
23  }