QTfrontend/AutoUpdater.h
author Xeli
Sun, 09 Oct 2011 20:41:17 +0200
branchhedgeroid
changeset 6045 9a7cc0f29430
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Using misc/libtremor/tremor rather than misc/tremor, plus added the include in the android.mk of SDL_mixer

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif