QTfrontend/SparkleAutoUpdater.h
author nemo
Tue, 23 Oct 2012 11:14:08 -0400
changeset 7802 c7f5c3bd7f8c
parent 2948 3f21a9dc93d0
child 7933 223b3a195474
permissions -rw-r--r--
Ok. Seems to me if you disconnect on any page, you should go to the main net page, since presumably you were in some part of net play. I think this should avoid ending up in a "lobby" after disconnecting

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