Exemple #1
0
 /// <summary>
 /// Creates an empty NaoEvent instance with the specified priority and execution behavior.
 /// </summary>
 /// <param name="p">A priority. Either Low, Medium or High.</param>
 /// <param name="e">A behavior. Either Durative or Instantaneous.</param>
 protected NaoEvent(Priority p, ExecutionBehavior e)
     : this()
 {
     Priority = p;
     ExecutionBehavior = e;
 }
Exemple #2
0
 /// <summary>
 /// Creates an empty NaoEvent instance with the specified priority and execution behavior.
 /// </summary>
 /// <param name="p">A priority. Either Low, Medium or High.</param>
 /// <param name="e">A behavior. Either Durative or Instantaneous.</param>
 protected NaoEvent(Priority p, ExecutionBehavior e)
     : this()
 {
     Priority          = p;
     ExecutionBehavior = e;
 }
Exemple #3
0
 /// <summary>
 /// Creates an empty NaoEvent instance with the specified execution behavior.
 /// </summary>
 /// <param name="e">A behavior. Either Durative or Instantaneous.</param>
 protected NaoEvent(ExecutionBehavior e)
     : this()
 {
     ExecutionBehavior = e;
 }
Exemple #4
0
 /// <summary>
 /// Creates an empty NaoEvent instance with the specified execution behavior.
 /// </summary>
 /// <param name="e">A behavior. Either Durative or Instantaneous.</param>
 protected NaoEvent(ExecutionBehavior e)
     : this()
 {
     ExecutionBehavior = e;
 }
Exemple #5
0
 /// <summary>
 /// Creates an empty NaoEvent instance with the specified priority and execution behavior.
 /// </summary>
 /// <param name="p">A priority. Either Low, Medium or High.</param>
 /// <param name="e">A behavior. Either Durative or Instantaneous.</param>
 public ReportBackEvent(Priority p, ExecutionBehavior e) : base(p, e)
 {
 }
Exemple #6
0
 /// <summary>
 /// Creates an empty NaoEvent instance with the specified execution behavior.
 /// </summary>
 /// <param name="e">A behavior. Either Durative or Instantaneous.</param>
 public ReportBackEvent(ExecutionBehavior e) : base(e)
 {
 }
Exemple #7
0
 /// <summary>
 /// Creates an empty NaoEvent instance with the specified priority and execution behavior.
 /// </summary>
 /// <param name="p">A priority. Either Low, Medium or High.</param>
 /// <param name="e">A behavior. Either Durative or Instantaneous.</param>
 public ReportBackEvent(Priority p, ExecutionBehavior e)
     : base(p, e)
 {
 }
Exemple #8
0
 /// <summary>
 /// Creates an empty NaoEvent instance with the specified execution behavior.
 /// </summary>
 /// <param name="e">A behavior. Either Durative or Instantaneous.</param>
 public ReportBackEvent(ExecutionBehavior e)
     : base(e)
 {
 }