QTfrontend/SparkleAutoUpdater.h
author unc0rr
Sat, 03 Nov 2012 23:28:42 +0400
changeset 7945 4006d77e1a28
parent 7933 223b3a195474
permissions -rw-r--r--
Send notification about 1 player in room on room creation

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