author | unc0rr |
Sat, 06 Mar 2010 10:59:20 +0000 | |
changeset 2948 | 3f21a9dc93d0 |
parent 2377 | f3fab2b09e0c |
child 7933 | 223b3a195474 |
permissions | -rw-r--r-- |
2261 | 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 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
14 |
public: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
15 |
SparkleAutoUpdater(const QString& url); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
16 |
~SparkleAutoUpdater(); |
2261 | 17 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
18 |
void checkForUpdates(); |
2377 | 19 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
20 |
private: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
21 |
class Private; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
22 |
Private* d; |
2261 | 23 |
}; |
24 |
||
25 |
#endif |