QTfrontend/SparkleAutoUpdater.h
author koda
Mon, 05 Nov 2012 01:35:54 +0100
branchwebgl
changeset 7969 7fcbbd46704a
parent 7933 223b3a195474
permissions -rw-r--r--
move pas2c files in their own directory and add a warning about argument order

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