QTfrontend/SparkleAutoUpdater.h
author nemo
Sun, 04 Nov 2012 17:24:14 -0500
changeset 7956 61da79e83330
parent 7933 223b3a195474
permissions -rw-r--r--
Causes AI fail. Needs testing 'cause at some point, I thought this was needed for portal, I don't remember *why*

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