QTfrontend/AutoUpdater.h
author koda
Thu, 27 Dec 2012 18:16:50 +0100
changeset 8341 7a7a39b2449b
parent 8284 a874d00df4a4
permissions -rw-r--r--
NSIS workaround no longer necessary

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