QTfrontend/util/platform/SparkleAutoUpdater.h
author antonc27 <antonc27@mail.ru>
Fri, 06 Nov 2015 03:21:00 +0100
branchios-revival
changeset 11313 4701700276f5
parent 8381 588a8e6e2041
permissions -rw-r--r--
- 'iOS Deployment Target' bump to 8.0 - Xcode projects updated to recommended settings - 'Bundle Identifier' changed back to old one

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