QTfrontend/AutoUpdater.h
author koda
Tue, 18 Dec 2012 12:04:17 +0100
changeset 8311 bc18481dca8b
parent 8284 a874d00df4a4
permissions -rw-r--r--
can use engine as library on windows too

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