QTfrontend/util/platform/AutoUpdater.h
author sheepluva
Sun, 08 Dec 2019 00:07:24 +0100
branchhedgeroid
changeset 15519 f90255a3454c
parent 8381 588a8e6e2041
permissions -rw-r--r--
hedgeroid: adjust module names (SDL_* -> SDL2_*)

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