QTfrontend/SparkleAutoUpdater.h
author nemo
Sun, 04 Nov 2012 17:47:44 -0500
changeset 7964 d00378a37dde
parent 7933 223b3a195474
permissions -rw-r--r--
Simplify ammo menu conditions so it shows up in more states. Should fix issue #465. The part w/ sliding in uworld is main #465 problem.

/*
 * Copyright (C) 2008 Remko Troncon
 */

#ifndef SPARKLEAUTOUPDATER_H
#define SPARKLEAUTOUPDATER_H

#include <QString>

#include "AutoUpdater.h"

class SparkleAutoUpdater : public AutoUpdater
{
    public:
        SparkleAutoUpdater();
        ~SparkleAutoUpdater();

        void checkForUpdates();
        void checkForUpdatesNow();

    private:
        class Private;
        Private* d;
};

#endif