QTfrontend/util/platform/AutoUpdater.h
author nemo
Tue, 13 Mar 2018 10:20:41 -0400
branchqt5transition
changeset 13184 ddfb4a73524b
parent 8381 588a8e6e2041
permissions -rw-r--r--
try plastique with fallback to windows - we should find a way to alert the user that qt5-style-plugins would improve rendering

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