changeset 8381 | 588a8e6e2041 |
parent 7933 | 223b3a195474 |
8380:0b375a3ceaa0 | 8381:588a8e6e2041 |
---|---|
1 /* |
|
2 * Copyright (C) 2008 Remko Troncon |
|
3 */ |
|
4 |
|
5 #ifndef SPARKLEAUTOUPDATER_H |
|
6 #define SPARKLEAUTOUPDATER_H |
|
7 |
|
8 #include <QString> |
|
9 |
|
10 #include "AutoUpdater.h" |
|
11 |
|
12 class SparkleAutoUpdater : public AutoUpdater |
|
13 { |
|
14 public: |
|
15 SparkleAutoUpdater(); |
|
16 ~SparkleAutoUpdater(); |
|
17 |
|
18 void checkForUpdates(); |
|
19 void checkForUpdatesNow(); |
|
20 |
|
21 private: |
|
22 class Private; |
|
23 Private* d; |
|
24 }; |
|
25 |
|
26 #endif |