1 /*
2  * Copyright (C) 2008 Remko Troncon
3  */
4 
5 #ifndef AUTOUPDATER_H
6 #define AUTOUPDATER_H
7 
8 class AutoUpdater
9 {
10     public:
11         virtual ~AutoUpdater();
12 
13         virtual void checkForUpdates() = 0;
14         virtual void checkForUpdatesNow() = 0;
15 };
16 
17 #endif
18