author | koda |
Fri, 02 Nov 2012 00:06:11 +0100 | |
branch | 0.9.18 |
changeset 7933 | 223b3a195474 |
parent 2948 | 3f21a9dc93d0 |
permissions | -rw-r--r-- |
/* * Copyright (C) 2008 Remko Troncon */ #ifndef SPARKLEAUTOUPDATER_H #define SPARKLEAUTOUPDATER_H #include <QString> #include "AutoUpdater.h" class SparkleAutoUpdater : public AutoUpdater { public: SparkleAutoUpdater(); ~SparkleAutoUpdater(); void checkForUpdates(); void checkForUpdatesNow(); private: class Private; Private* d; }; #endif