QTfrontend/AutoUpdater.h
author Ondrej Skopek <skopekondrej@gmail.com>
Fri, 14 Dec 2012 21:09:07 +0100
changeset 8299 ef2e284255cd
parent 8284 a874d00df4a4
permissions -rw-r--r--
Added handling of not registered nicks (no change-server side tho), clearPasswordHash() also now sets the savepassword setting to false

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