QTfrontend/util/platform/SparkleAutoUpdater.h
author Grigory Ustinov <grenka@altlinux.org>
Wed, 21 Nov 2018 17:28:28 +0300
changeset 14264 7d7f7483459e
parent 8381 588a8e6e2041
permissions -rw-r--r--
Update russian frontend translation

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