QTfrontend/AutoUpdater.h
author Xeli
Sat, 21 Apr 2012 17:59:14 +0200
changeset 6900 26873e68034f
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
- Added support for keyboards on android - tiny patch for android/sdl tracks backspace correctly now - Added SDL_SCANCODE_X constants in uKeys - First attempt at making the touch interface and keys input work side by side

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif