QTfrontend/AutoUpdater.h
author koda
Tue, 03 May 2011 23:16:47 +0200
changeset 5200 7440fe992e73
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
* move ammo lines from .cpp.in to .h so that it is readable from the ios frontend (and who knows, maybe from other frontends as well) * increase the max team number from 6 to 8 like engine supports * update ios project file for uCursor

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif