QTfrontend/SparkleAutoUpdater.h
author nemo
Wed, 25 Jul 2012 10:56:14 -0400
changeset 7426 55b49cc1f33a
parent 2948 3f21a9dc93d0
child 7933 223b3a195474
permissions -rw-r--r--
Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.

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