QTfrontend/SparkleAutoUpdater.h
author unc0rr
Thu, 30 Jul 2009 09:32:56 +0000 (2009-07-30)
changeset 2287 e34b5363ae91
parent 2261 57e99c908e7c
child 2377 f3fab2b09e0c
permissions -rw-r--r--
Better handle pointing with mouse cursor on zoom
/*
 * 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