QTfrontend/AutoUpdater.h
author Ondrej Skopek <skopekondrej@gmail.com>
Wed, 12 Dec 2012 16:17:32 +0100
changeset 8295 6ef114ea2298
parent 8284 a874d00df4a4
permissions -rw-r--r--
fixed minor problem with saving hash

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