Frontend:
* Removed grid lines from room list
* Added map icons to room list and map selection (for easier identifying; have to be drawn)
* Removed multi row selection from room list
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
};
#endif