QTfrontend/SparkleAutoUpdater.h
author unc0rr
Mon, 05 Nov 2012 23:03:01 +0400
branchphysfslayer
changeset 7955 85b3970b402a
parent 7933 223b3a195474
permissions -rw-r--r--
- Load teams via physfs - Some fixes which allow Qt to load ini files and icons via physfs

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