1 #ifndef SEAFILE_CLIENT_SPARKLE_SUPPORT_H
2 #define SEAFILE_CLIENT_SPARKLE_SUPPORT_H
3 
4 class SparkleHelper {
5 public:
6     static void checkForUpdate();
7     static void setAutoUpdateEnabled(bool enabled);
8     static bool autoUpdateEnabled();
9     static void setFeedURL(const char* url);
10 };
11 
12 #endif // SEAFILE_CLIENT_SPARKLE_SUPPORT_H
13