Changeset 2302 for box/trunk/bin/bbackupd/BackupClientDirectoryRecord.h
- Timestamp:
- 26/09/2008 23:18:35 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
box/trunk/bin/bbackupd/BackupClientDirectoryRecord.h
r2245 r2302 37 37 public: 38 38 virtual ~SysadminNotifier() { } 39 virtual void NotifySysadmin(int Event) = 0; 39 40 typedef enum 41 { 42 StoreFull = 0, 43 ReadError, 44 BackupError, 45 BackupStart, 46 BackupFinish, 47 BackupOK, 48 MAX 49 // When adding notifications, remember to add 50 // strings to NotifySysadmin() 51 } 52 EventCode; 53 54 virtual void NotifySysadmin(EventCode Event) = 0; 40 55 }; 41 56 … … 195 210 196 211 bool StopRun() { return mrRunStatusProvider.StopRun(); } 197 void NotifySysadmin( intEvent)212 void NotifySysadmin(SysadminNotifier::EventCode Event) 198 213 { 199 214 mrSysadminNotifier.NotifySysadmin(Event);
Note: See TracChangeset
for help on using the changeset viewer.
