QTfrontend/util/platform/SparkleAutoUpdater.h
author koda
Mon, 14 Jan 2013 12:35:01 +0100
changeset 8381 588a8e6e2041
parent 7933 QTfrontend/SparkleAutoUpdater.h@223b3a195474
permissions -rw-r--r--
move platform code around, based off a gci task by dag10

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