QTfrontend/SparkleAutoUpdater.h
author sheepluva
Fri, 02 Apr 2010 08:35:34 +0000
changeset 3247 045a76b9f32f
parent 2948 3f21a9dc93d0
child 7933 223b3a195474
permissions -rw-r--r--
Shotgun Training: * '["en"]' was supposed to be '["pl"]' (Mmmmh, copypasta :D)

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