Example #1
0
 //============================================================================
 /// <summary>
 /// Set the value of this object from another of the same type.
 /// </summary>
 /// <param name="init"></param>
 //============================================================================
 public void Set(TTimeValue init)
 {
     iDay     = init.iDay;
     iSec     = init.iSec;
     dSecPart = init.dSecPart;
 }
Example #2
0
 //============================================================================
 /// <summary>
 /// Set the finish time using a TTimeValue
 /// </summary>
 /// <param name="init"></param>
 //============================================================================
 public void setFinish(TTimeValue init)
 {
     finish.Set(init);
 }
Example #3
0
 //============================================================================
 /// <summary>
 /// Default constructor
 /// </summary>
 //============================================================================
 public TTimeStep()
 {
     start  = new TTimeValue();
     finish = new TTimeValue();
 }
Example #4
0
 //============================================================================
 /// <summary>
 /// Set the start time using a TTimeValue
 /// </summary>
 /// <param name="init"></param>
 //============================================================================
 public void setStart(TTimeValue init)
 {
     start.Set(init);
 }