QTfrontend/SparkleAutoUpdater.h
author nemo
Thu, 01 Apr 2010 16:08:09 +0000
changeset 3236 4ab3917d7d44
parent 2948 3f21a9dc93d0
child 7933 223b3a195474
permissions -rw-r--r--
Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010

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