QTfrontend/util/platform/AutoUpdater.h
author koda
Mon, 04 Mar 2013 18:27:21 +0100
changeset 8646 e31044b7fbba
parent 8381 588a8e6e2041
permissions -rw-r--r--
on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)

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