QTfrontend/SparkleAutoUpdater.h
author nemo
Tue, 25 Aug 2009 20:54:11 +0000
changeset 2331 e4941a7986d6
parent 2261 57e99c908e7c
child 2377 f3fab2b09e0c
permissions -rw-r--r--
Another try at keeping blowtorch/firepunch/jackhammer from going through indestructible stuff. Shame these routines don't use hedgehog movement

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