QTfrontend/SparkleAutoUpdater.h
author smaxx
Fri, 17 Sep 2010 15:27:04 +0200
changeset 3871 c91aefe1dca2
parent 2948 3f21a9dc93d0
child 7933 223b3a195474
permissions -rw-r--r--
Frontend: * Disabled frontend's hog count for now to fix issue #44 - doesn't have to be limited to 48 anyway (but a limit based on active map would be nice)

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