QTfrontend/AutoUpdater.h
author mikade
Tue, 26 Jul 2011 01:02:02 +0200
changeset 5457 48fe8e03a9cf
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Don't activate switch if player only has 1 hog Demo's mine is set explicity at 5s and not at scheme settings.

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif