QTfrontend/util/platform/AutoUpdater.h
author Wuzzy <Wuzzy2@mail.ru>
Sat, 12 Jan 2019 06:19:16 +0100
changeset 14558 90c215f83273
parent 8381 588a8e6e2041
permissions -rw-r--r--
TS: Restore 2 of the "specialist" letters

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