public void Add(OutputDevice Output)
 {
     Outputs.Add(Output);
 }
 public void Remove(OutputDevice Output)
 {
     Outputs.Remove(Output);
 }
 public OutputDeviceSynchronized(OutputDevice Inner)
 {
     this.Inner = Inner;
 }