QTfrontend/SparkleAutoUpdater.h
author sheepluva
Fri, 09 Sep 2011 15:36:30 +0200
changeset 5825 a6eab1b7c00d
parent 2948 3f21a9dc93d0
child 7933 223b3a195474
permissions -rw-r--r--
Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event. I implemented that event in Tumber and Space Invasion already in order to update HUD locations properly. (mikade: deal with it $

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