QTfrontend/util/platform/AutoUpdater.h
author unc0rr
Tue, 02 Jan 2018 23:45:18 +0100
branchqmlfrontend
changeset 12881 b544bbbd0696
parent 8381 588a8e6e2041
permissions -rw-r--r--
Break engine completely and make it render in frontend window (no actual rendering yet, just white screen)

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