Ejemplo n.º 1
0
 public override void GetDates()
 {
     this.Sequences     = new FSMSequenceConfig();
     this.Configuration = new FSMVConfig();
     this.Sequences     = this.Sequences.LoadFromXML(this.XmlSeq);  ////load sequences from XML
     this.Configuration = this.Configuration.LoadFromXML(this.Xml); ////load XML configuration
     this.SetGraphNodes();
 }
Ejemplo n.º 2
0
 public SecondStateMachine(Version v)
 {
     this.Configuration  = new FSMVConfig();
     this.Sequences      = new FSMSequenceConfig();
     this.MyGraph        = new CustomGraph();
     this.Xml            = v.Xml;
     this.XmlSeq         = v.XmlSeq;
     this.CurrentVersion = v;
 }