QTfrontend/AutoUpdater.h
author Ondrej Skopek <skopekondrej@gmail.com>
Fri, 14 Dec 2012 18:49:25 +0100
changeset 8297 b236e3afed0d
parent 8284 a874d00df4a4
permissions -rw-r--r--
Reverted password loading in PAGE_SETUP, changed the value of passwordlength to save, added clearing of hashes after a 'Wrong password' RetryDialog

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