QTfrontend/AutoUpdater.h
author nemo
Fri, 12 Nov 2010 17:54:49 -0500
branch0.9.14
changeset 4253 160f987a5d9f
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
improve behaviour of resurrection. pull in 4254 and 4259 which replace random with index

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif