QTfrontend/SparkleAutoUpdater.h
author nemo
Mon, 14 Nov 2011 22:38:24 -0500
changeset 6383 c34a8b98d78c
parent 2948 3f21a9dc93d0
child 7933 223b3a195474
permissions -rw-r--r--
increase land tex size to 512, which is the current minimum required just to load a hat. On my system max fps rose from 840 to 890 - about 6% change. also a nil check, probably not needed.

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