Engine:
* Small tweaks to English and German locales
Frontend:
* Added a new default locale choice ("system default") that uses Qt's guessing to determine the preferred language
* Updated ts/qm files
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
};
#endif