11 lines
146 B
C++
11 lines
146 B
C++
#ifndef AUTOUPDATER_H
|
|
#define AUTOUPDATER_H
|
|
|
|
class AutoUpdater
|
|
{
|
|
public:
|
|
virtual ~AutoUpdater();
|
|
virtual void checkForUpdates() = 0;
|
|
};
|
|
|
|
#endif
|