--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/QTfrontend/SparkleAutoUpdater.h Tue Jul 14 20:02:07 2009 +0000
@@ -0,0 +1,25 @@
+/*
+ * 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