QTfrontend/AutoUpdater.h
author nemo
Fri, 24 Dec 2010 11:54:34 -0500
changeset 4665 fa7ad5f3725f
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Make basic training solvable again. Freeze RNG at current version for less of this kind of issue in future, and a bit more savable of seeds. Disable offsets in preparation for release.

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif