QTfrontend/util/platform/AutoUpdater.h
author Milo Mordaunt <milomord@gmail.com>
Sun, 26 Apr 2015 13:02:38 +0100
changeset 11338 facac91c7c65
parent 8381 588a8e6e2041
permissions -rw-r--r--
Remove quotes when checking Haskell Modules to adopt new CMake behaviour (CMP0054)

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