yay no more linking workarounds (for statically linking physfs on 32 bit arch, bringing divd3 or stdc++ or gcc_s.so.1 dependencies)
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
virtual void checkForUpdatesNow() = 0;
};
#endif