public void Convert(IController source, LibGPGX.InputData target)
 {
     _source = source;
     _target = target;
     target.ClearAllBools();
     foreach (var f in _converts)
     {
         f();
     }
     _source = null;
     _target = null;
 }
 public void Convert(IController source, LibGPGX.InputData target)
 {
     this.source = source;
     this.target = target;
     target.ClearAllBools();
     foreach (var f in Converts)
     {
         f();
     }
     this.source = null;
     this.target = null;
 }
Example #3
0
		public void Convert(IController source, LibGPGX.InputData target)
		{
			this.source = source;
			this.target = target;
			target.ClearAllBools();
			foreach (var f in Converts)
				f();
			this.source = null;
			this.target = null;
		}