QTfrontend/SparkleAutoUpdater.h
author unc0rr
Wed, 02 Sep 2009 09:04:06 +0000
changeset 2345 daf1785f2337
parent 2261 57e99c908e7c
child 2377 f3fab2b09e0c
permissions -rw-r--r--
- Frontend: reorganize code controlling widgets state, fix problems getting room admin status - Server: rename room after new room master

/*
 * Copyright (C) 2008 Remko Troncon
 */

#ifndef SPARKLEAUTOUPDATER_H
#define SPARKLEAUTOUPDATER_H

#include <QString>

#include "AutoUpdater.h"

class SparkleAutoUpdater : public AutoUpdater
{
	public:
		SparkleAutoUpdater(const QString& url);
		~SparkleAutoUpdater();

		void checkForUpdates();
	
	private:
		class Private;
		Private* d;
};

#endif