QTfrontend/util/platform/AutoUpdater.h
changeset 8381 588a8e6e2041
parent 8284 a874d00df4a4
equal deleted inserted replaced
8380:0b375a3ceaa0 8381:588a8e6e2041
       
     1 /*
       
     2  * Copyright (C) 2008 Remko Troncon
       
     3  */
       
     4 
       
     5 #ifndef AUTOUPDATER_H
       
     6 #define AUTOUPDATER_H
       
     7 
       
     8 class AutoUpdater
       
     9 {
       
    10     public:
       
    11         virtual ~AutoUpdater();
       
    12 
       
    13         virtual void checkForUpdates() = 0;
       
    14         virtual void checkForUpdatesNow() = 0;
       
    15 };
       
    16 
       
    17 #endif