QTfrontend/util/platform/AutoUpdater.h
author Wuzzy
Mon, 18 Nov 2013 22:14:16 +0100
changeset 9704 055fee9da6a0
parent 8381 588a8e6e2041
permissions -rw-r--r--
german translation update PS: * I also merged in the typo fixes by nemo and hasufell * Sorry it took so looooong for this to actually get committed -sheepluva

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
        virtual void checkForUpdatesNow() = 0;
};

#endif