QTfrontend/SparkleAutoUpdater.h
author sheepluva
Fri, 23 Sep 2011 22:42:30 +0200
changeset 5998 e8f44e9433f0
parent 2948 3f21a9dc93d0
child 7933 223b3a195474
permissions -rw-r--r--
many many netclient/frondent changes (just the beginning though): * better separation of concerns * trying to reduce segfaulst due to netclient being deconstructed while still in use * no extra popup for quit reason anymore * errors/warnings will be displayed in chat instead of popups in most cases * NOTE: auto-kick for ignored players is currently _disabled_ will fix that soon

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