Advertisement
Guest User

Untitled

a guest
Mar 15th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #ifndef __SPARKLE_AUTOUPDATER_DELEGATE_H
  2. #define __SPARKLE_AUTOUPDATER_DELEGATE_H
  3.  
  4. #include <Cocoa/Cocoa.h>
  5. #include <Sparkle/Sparkle.h>
  6.  
  7. @interface SparkleAutoUpdaterDelegate: SUUpdaterDelegate {
  8.  
  9. - (void)updater:(SUUpdater *)updater didFinishLoadingAppcast:(SUAppcast *)appcast;
  10. - (void)updater:(SUUpdater *)updater didFindValidUpdate:(SUAppcastItem *)item;
  11. - (void)updaterDidNotFindUpdate:(SUUpdater *)updater;
  12. - (void)userDidCancelDownload:(SUUpdater *)updater;
  13.  
  14. - (void)updaterWillShowModalAlert:(SUUpdater *)updater;
  15. - (void)updaterDidShowModalAlert:(SUUpdater *)updater;
  16.  
  17. @end
  18.  
  19. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement