예제 #1
0
        /// <summary>
        /// Time, position and fix type data
        /// </summary>
        public virtual DsspResponsePort <DefaultUpdateResponseType> GpGgaNotification()
        {
            GpGga             body = new GpGga();
            GpGgaNotification op   = new GpGgaNotification(body);

            this.Post(op);
            return(op.ResponsePort);
        }
예제 #2
0
 /// <summary>
 /// Default Constructor
 /// </summary>
 /// <param name="data"></param>
 public GpGgaNotification(GpGga data)
 {
     this.Body = data;
 }