Esempio n. 1
0
 /// <summary>
 /// Add a custom output object to the internal list.
 /// </summary>
 /// <param name="custom"></param>
 public void AddCustomOutput(ICustomModuloOutput custom)
 {
     _customModOutputList.Add(custom);
 }
Esempio n. 2
0
 /// <summary>
 /// Remove a custom output object from the internal list.
 /// </summary>
 /// <param name="custom"></param>
 public void RemoveCustomOutput(ICustomModuloOutput custom)
 {
     _customModOutputList.Remove(custom);
 }