author | sheepluva |
Tue, 05 Sep 2017 20:46:40 +0200 | |
changeset 12452 | e18cfe90e4e2 |
parent 8381 | 588a8e6e2041 |
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: |
7933 | 15 |
SparkleAutoUpdater(); |
2948
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(); |
7933 | 19 |
void checkForUpdatesNow(); |
2377 | 20 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
21 |
private: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
22 |
class Private; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
23 |
Private* d; |
2261 | 24 |
}; |
25 |
||
26 |
#endif |