QTfrontend/AutoUpdater.h
author sheepluva
Sun, 16 Dec 2012 18:50:00 +0100
changeset 8305 039ceb443aca
parent 8284 a874d00df4a4
permissions -rw-r--r--
add hwengine.desktop to hgignore

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