QTfrontend/SparkleAutoUpdater.h
author unc0rr
Tue, 06 Nov 2012 22:35:08 +0400
changeset 7986 53b1da5ee7f4
parent 7933 223b3a195474
permissions -rw-r--r--
Maybe this caused server crashes? Add more strictness on team owner record field

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