QTfrontend/util/platform/AutoUpdater.h
author unc0rr
Sun, 10 Feb 2013 01:52:13 +0400
changeset 8486 9a65baafd7d7
parent 8381 588a8e6e2041
permissions -rw-r--r--
Send JOINING message in response to FOLLOW. Actual join may still fail due to room restrictions. Not tested.

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
        virtual void checkForUpdatesNow() = 0;
};

#endif