QTfrontend/SparkleAutoUpdater.h
author koda
Sat, 03 Nov 2012 23:44:49 +0100
branchwebgl
changeset 7949 91511b219de7
parent 7933 223b3a195474
permissions -rw-r--r--
let's start to introduce bugs in haskell stuff too

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