changeset 2261 | 57e99c908e7c |
child 2377 | f3fab2b09e0c |
2260:31756e21c436 | 2261:57e99c908e7c |
---|---|
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(const QString& url); |
|
16 ~SparkleAutoUpdater(); |
|
17 |
|
18 void checkForUpdates(); |
|
19 |
|
20 private: |
|
21 class Private; |
|
22 Private* d; |
|
23 }; |
|
24 |
|
25 #endif |