QTfrontend/util/platform/AutoUpdater.h
author Jens Petersen
Mon, 12 Sep 2022 12:50:37 -0400
branch1.0.0
changeset 15861 9d4ba1912e71
parent 8381 588a8e6e2041
permissions -rw-r--r--
build fix from https://bugzilla.redhat.com/show_bug.cgi?id=1853122

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