QTfrontend/AutoUpdater.h
author koda
Sun, 13 Mar 2011 03:43:18 +0100
changeset 5002 a9c44a8ffec8
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system

/*
 * Copyright (C) 2008 Remko Troncon
 */

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif