author | nemo |
Sat, 27 Feb 2010 20:01:54 +0000 | |
changeset 2878 | f43465842625 |
parent 2377 | f3fab2b09e0c |
child 2948 | 3f21a9dc93d0 |
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 |
{ |
|
14 |
public: |
|
15 |
SparkleAutoUpdater(const QString& url); |
|
16 |
~SparkleAutoUpdater(); |
|
17 |
||
18 |
void checkForUpdates(); |
|
2377 | 19 |
|
2261 | 20 |
private: |
21 |
class Private; |
|
22 |
Private* d; |
|
23 |
}; |
|
24 |
||
25 |
#endif |