QTfrontend/SparkleAutoUpdater.h
branchphysfslayer
changeset 8520 1dedcc37bfe8
parent 8056 d5d5e1698554
parent 8518 24d2bdc6deff
child 8522 1853628ae285
equal deleted inserted replaced
8056:d5d5e1698554 8520:1dedcc37bfe8
     1 /*
       
     2  * Copyright (C) 2008 Remko Troncon
       
     3  */
       
     4 
       
     5 #ifndef SPARKLEAUTOUPDATER_H
       
     6 #define SPARKLEAUTOUPDATER_H
       
     7 
       
     8 #include <QString>
       
     9 
       
    10 #include "AutoUpdater.h"
       
    11 
       
    12 class SparkleAutoUpdater : public AutoUpdater
       
    13 {
       
    14     public:
       
    15         SparkleAutoUpdater();
       
    16         ~SparkleAutoUpdater();
       
    17 
       
    18         void checkForUpdates();
       
    19         void checkForUpdatesNow();
       
    20 
       
    21     private:
       
    22         class Private;
       
    23         Private* d;
       
    24 };
       
    25 
       
    26 #endif