QTfrontend/util/platform/AutoUpdater.h
author koda
Wed, 20 Feb 2013 02:21:14 +0100
branchwebgl
changeset 8448 14f736ca7eb3
parent 8381 588a8e6e2041
permissions -rw-r--r--
update FindGLEW to use the same variables as in later CMake files and make sure to include its headers before compiling c stuff

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