Defines the IteratorPopulator class.
Inheritance: IGeneratorPopulator
 /// <summary>Initializes a new instance of the <see cref="IteratorGenerator"/> class.</summary>
 /// <param name="model">The model.</param>
 /// <param name="text">The text.</param>
 /// <param name="liveTemplate">The live template.</param>
 /// <param name="variables">The variables.</param>
 public IteratorGenerator(IteratorPopulator.Model model, string text, string liveTemplate, params string[] variables)
 {
   this.Model = model;
   this.Text = text;
   this.LiveTemplate = liveTemplate;
   this.Variables = variables;
 }
 /// <summary>Initializes a new instance of the <see cref="IteratorGenerator"/> class.</summary>
 /// <param name="model">The model.</param>
 /// <param name="text">The text.</param>
 /// <param name="liveTemplate">The live template.</param>
 public IteratorGenerator(IteratorPopulator.Model model, string text, string liveTemplate)
 {
   this.Model = model;
   this.Text = text;
   this.LiveTemplate = liveTemplate;
   this.Variables = new string[0];
 }