QTfrontend/AutoUpdater.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 AUTOUPDATER_H
       
     6 #define AUTOUPDATER_H
       
     7 
       
     8 class AutoUpdater
       
     9 {
       
    10     public:
       
    11         virtual ~AutoUpdater();
       
    12 
       
    13         virtual void checkForUpdates() = 0;
       
    14 };
       
    15 
       
    16 #endif