QTfrontend/AutoUpdater.h
author Xeli
Tue, 28 Jun 2011 18:33:51 +0200
branchhedgeroid
changeset 5379 4ed99dc92763
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Moved the Audio directory from the iOS folder one level up. Android-build will now refer to it SDL-android-project/build.xml must be changed if the directory is moved

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif