QTfrontend/SparkleAutoUpdater.h
author nemo
Mon, 29 Oct 2012 16:26:26 -0400
changeset 7882 35dfc54ba2c6
parent 2948 3f21a9dc93d0
child 7933 223b3a195474
permissions -rw-r--r--
disable this block since it doesn't fit star's new graphic. doesn't show up often anyway, since unc0rr changed gst clearing

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