QTfrontend/AutoUpdater.h
author nemo
Fri, 29 Oct 2010 20:05:19 -0400
changeset 4017 048bcb8c72ae
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Kill off hog immediately on using up health, use more common formatting, call render less often

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif