QTfrontend/SparkleAutoUpdater.h
author Medo <smaxein@googlemail.com>
Tue, 27 Nov 2012 21:21:14 +0100
branchflibqtfrontend
changeset 8132 f68b43cf510f
parent 7933 223b3a195474
permissions -rw-r--r--
Added default weaponset to frontlib hwconsts Now the weaponset create function can actually do what it promises and create a default set instead of an empty one :)

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