~raof/do/throwaway-app-indicator

« back to all changes in this revision

Viewing changes to Do.Platform/src/Do.Platform/IPreferencesService.cs

  • Committer: Robert Dyer
  • Date: 2009-08-29 07:45:29 UTC
  • mfrom: (1295.1.10 gconf-notify)
  • Revision ID: rdyer@yamuna-20090829074529-gi0qc235wc6nsxn2
merging branch that allows GConf to notify Do of changed preferences and Do to handle them accordingly

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
        
29
29
        public interface IPreferencesService : IService
30
30
        {
 
31
                event EventHandler<PreferencesChangedEventArgs> PreferencesChanged;
 
32
                
31
33
                bool Set<T>    (string key, T val);
32
34
                bool TryGet<T> (string key, out T val);
33
35
        }
34
 
}
 
 
b'\\ No newline at end of file'
 
36
}