QTfrontend/util/platform/SparkleAutoUpdater.h
author antonc27 <antonc27@mail.ru>
Sun, 15 Nov 2015 14:40:51 +0100
branchios-revival
changeset 11387 7038ecc1f7fa
parent 8381 588a8e6e2041
permissions -rw-r--r--
Added tag Hedgewars-iOS-2.0 for changeset a0163b8302c5

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