/dotnet/Sync/SyncLogger.cs

http://sigma-h.googlecode.com/ · C# · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · 4f25150225530747b9a0c5274344222a MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ActivityInfo.Sync
  6. {
  7. interface SyncLogger
  8. {
  9. void log(int level, String text);
  10. }
  11. }