IOutputListener.cs 150 B

123456789101112
  1. using System;
  2. namespace sccdlib
  3. {
  4. public interface IOutputListener
  5. {
  6. void add (Event output_event);
  7. Event fetch ();
  8. }
  9. }