QTfrontend/SparkleAutoUpdater.h
author unc0rr
Tue, 01 Sep 2009 17:56:25 +0000
changeset 2341 408edb2f254c
parent 2261 57e99c908e7c
child 2377 f3fab2b09e0c
permissions -rw-r--r--
Implement room delegation (not tested, only one predefined name to rename room)

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