QTfrontend/util/platform/SparkleAutoUpdater.h
author Wuzzy <Wuzzy2@mail.ru>
Wed, 08 Aug 2018 14:10:32 +0200
changeset 13646 007813b81f1b
parent 8381 588a8e6e2041
permissions -rw-r--r--
Use light gray color for volume change, just like for the auto camera msgs The idea is that these are "local" messages for local changes

/*
 * Copyright (C) 2008 Remko Troncon
 */

#ifndef SPARKLEAUTOUPDATER_H
#define SPARKLEAUTOUPDATER_H

#include <QString>

#include "AutoUpdater.h"

class SparkleAutoUpdater : public AutoUpdater
{
    public:
        SparkleAutoUpdater();
        ~SparkleAutoUpdater();

        void checkForUpdates();
        void checkForUpdatesNow();

    private:
        class Private;
        Private* d;
};

#endif