QTfrontend/AutoUpdater.h
author Xeli
Sun, 27 Nov 2011 00:54:00 +0100
changeset 6446 a49d01b96185
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
android: cleaned up the code a bit and removed a bug with the parsing of the xml

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif