QTfrontend/SparkleAutoUpdater.h
author martin_bede
Thu, 03 Jan 2013 19:57:17 +0100
changeset 8359 9a7024b2a4d3
parent 7933 223b3a195474
permissions -rw-r--r--
Removed wiggle 3D mode, reorder the list of 3D modes.

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