NullJdt.cs 295 B

123456789101112
  1. 
  2. namespace LJLib.Jdt
  3. {
  4. public class NullJdt : IJdt
  5. {
  6. private NullJdt() { }
  7. public void AcceptTotal(int total) { }
  8. public void Inc(int value) { }
  9. public void SetMsg(string value) { }
  10. public static readonly NullJdt Value = new NullJdt();
  11. }
  12. }