QTfrontend/util/platform/AutoUpdater.h
author mikade <redgrinner@gmail.com>
Sat, 02 May 2015 11:47:55 +0900
changeset 10918 1b878d1d32ce
parent 8381 588a8e6e2041
permissions -rw-r--r--
fix techracer map 3 another small test map

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