QTfrontend/AutoUpdater.h
author sheepluva
Sat, 22 Oct 2011 06:55:14 +0200
changeset 6180 0992fc5a4ad9
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif