QTfrontend/AutoUpdater.h
author orange.hg@gmail.com
Tue, 28 Jun 2011 20:42:04 +0000
changeset 5327 f3635f25f706
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Second passage (second time I correct), -nouvelles phrases de jeu (new sentences) -correction de fautes (correction of mistakes) -reformulations pour plus de compréhension et de cohérence (reformulation for more understanding)

/*
 * Copyright (C) 2008 Remko Troncon
 */

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif