author | nemo |
Thu, 10 Nov 2011 15:12:44 -0500 | |
changeset 6314 | b4fc5b863f5f |
parent 2948 | 3f21a9dc93d0 |
child 8284 | a874d00df4a4 |
permissions | -rw-r--r-- |
2266 | 1 |
/* |
2 |
* Copyright (C) 2008 Remko Troncon |
|
3 |
*/ |
|
4 |
||
5 |
#ifndef AUTOUPDATER_H |
|
6 |
#define AUTOUPDATER_H |
|
7 |
||
8 |
class AutoUpdater |
|
9 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2266
diff
changeset
|
10 |
public: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2266
diff
changeset
|
11 |
virtual ~AutoUpdater(); |
2266 | 12 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2266
diff
changeset
|
13 |
virtual void checkForUpdates() = 0; |
2266 | 14 |
}; |
15 |
||
16 |
#endif |