QTfrontent: Print map and style name in red, if missing. And update map label after delegation
/*
* 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