QTfrontend/util/platform/AutoUpdater.h
author S.D.
Fri, 23 Sep 2022 02:21:21 +0300
changeset 15897 d7b53d08ad9c
parent 8381 588a8e6e2041
permissions -rw-r--r--
Add FastForward/StopFastForward (/ff hh:mm:ss, /sff) chat commands to fast forward to a specific timestamp in a demo

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