QTfrontend/util/platform/AutoUpdater.h
author Wuzzy <almikes@aol.com>
Sun, 15 Oct 2017 12:30:31 +0200
changeset 12703 6726d5edfdfb
parent 8381 588a8e6e2041
permissions -rw-r--r--
Loyal Highlander: loyal=true in Highlander script param, you only get stuff for *enemy* kills Normal Highlander is of course not affected by this. This setting is optional.

/*
 * 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