/// <summary> Explicit constructor. </summary> public LookupTransformAction(LookupTransformActionGoal ActionGoal, LookupTransformActionResult ActionResult, LookupTransformActionFeedback ActionFeedback) { this.ActionGoal = ActionGoal; this.ActionResult = ActionResult; this.ActionFeedback = ActionFeedback; }
/// <summary> Constructor with buffer. </summary> internal LookupTransformAction(ref Buffer b) { ActionGoal = new LookupTransformActionGoal(ref b); ActionResult = new LookupTransformActionResult(ref b); ActionFeedback = new LookupTransformActionFeedback(ref b); }
/// <summary> Constructor for empty message. </summary> public LookupTransformAction() { ActionGoal = new LookupTransformActionGoal(); ActionResult = new LookupTransformActionResult(); ActionFeedback = new LookupTransformActionFeedback(); }