QTfrontend/util/platform/SparkleAutoUpdater.h
author antonc27 <antonc27@mail.ru>
Mon, 10 Aug 2015 22:44:51 +0200
branchios-revival
changeset 11102 87ca80dbb141
parent 8381 588a8e6e2041
permissions -rw-r--r--
- Restore game functionality disabled, because it blocks main screen Note: Uncomment this after

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