QTfrontend/SparkleAutoUpdater.h
author koda
Sat, 26 Nov 2011 17:47:55 +0100
changeset 6441 9e5a3b2a3c38
parent 2948 3f21a9dc93d0
child 7933 223b3a195474
permissions -rw-r--r--
raise the minimum qt version required to 4.6; this was needed as the new animation frameworks were absent in 4.5 and lower

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

#ifndef SPARKLEAUTOUPDATER_H
#define SPARKLEAUTOUPDATER_H

#include <QString>

#include "AutoUpdater.h"

class SparkleAutoUpdater : public AutoUpdater
{
    public:
        SparkleAutoUpdater(const QString& url);
        ~SparkleAutoUpdater();

        void checkForUpdates();

    private:
        class Private;
        Private* d;
};

#endif