Frontend:
* Disabled frontend's hog count for now to fix
issue #44 - doesn't have to be limited to 48 anyway (but a limit based on active map would be nice)
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
};
#endif