QTfrontend/SparkleAutoUpdater.h
author koda
Thu, 22 Nov 2012 01:47:09 +0100
branchwebgl
changeset 8099 a7f02b902b6f
parent 7933 223b3a195474
permissions -rw-r--r--
throw in some 'nots' trying to restore pas2c functionality

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