QTfrontend/AutoUpdater.h
author smaxx
Wed, 06 Oct 2010 22:36:41 +0200
changeset 3932 2fc211f60015
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Engine: * Temporary fix to log file writing when running from command line (standalone demo/savegame playback) Frontend: * Added a button to the settings menu to associate demos and savegames (.hwd/.hws) with the engine in Windows Explorer and other programs such as web browsers (Win32 only)

/*
 * Copyright (C) 2008 Remko Troncon
 */

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif