QTfrontend/util/platform/AutoUpdater.h
author Wuzzy <almikes@aol.com>
Fri, 28 Apr 2017 02:50:23 +0200
changeset 12373 b43c00e36369
parent 8381 588a8e6e2041
permissions -rw-r--r--
ACF, mission 3: Fix Lua error when Leaks a Lot dies at the beginning

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