QTfrontend/util/platform/AutoUpdater.h
author sheepluva
Thu, 10 Sep 2015 18:50:39 +0200
changeset 11152 3ac7f6d43200
parent 8381 588a8e6e2041
permissions -rw-r--r--
stop rc plane prop/engine sound when out of fuel

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