QTfrontend/AutoUpdater.h
author sheepluva
Thu, 27 Jan 2011 22:55:11 +0100
branch0.9.15
changeset 4771 6bb64d38003e
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
how about we 60-sec-ban the _kicked user_ instead of the _admin that kicked that user_? :P

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif