QTfrontend/AutoUpdater.h
author unc0rr
Sat, 12 Mar 2011 22:42:01 +0300
changeset 5000 72d8fb26223d
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
- Don't pretend client sent some message from sending thread (fixes crash when client is already deleted by recieveng thread) - Better exception handling in recieving thread

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif