Revision 174bbb6e trunk/Pithos.Core/IStatusNotification.cs

b/trunk/Pithos.Core/IStatusNotification.cs
55 55
        void NotifyConflicts(IEnumerable<FileSystemInfo> conflictFiles, string message);
56 56
        void NotifyForFiles(IEnumerable<FileSystemInfo> files, string message,TraceLevel level);
57 57
        void Notify(Notification notification);
58
        void SetPithosStatus(PithosStatus status);
59
        void SetPithosStatus(PithosStatus localSyncing, string format);
58 60
    }
59 61

  
60 62
    public class Notification
......
71 73
        }
72 74
    }
73 75

  
76
    public class StatusNotification:Notification
77
    {
78
        public StatusNotification(string title)
79
        {
80
            Level = TraceLevel.Info;
81
            Title = title;
82
        }
83
    }
84

  
74 85
    public class ProgressNotification:Notification
75 86
    {
76 87
        public string FileName { get; set; }

Also available in: Unified diff