QTfrontend/AutoUpdater.h
author Ondrej Skopek <skopekondrej@gmail.com>
Thu, 13 Dec 2012 20:34:44 +0100
changeset 8296 455da122c0ad
parent 8284 a874d00df4a4
permissions -rw-r--r--
Added a hack that activates a RetryDialog in case the user is banned for 'Reconnect too fast'. Set all string used in RetryDialog to be translated

/*
 * 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