QTfrontend/AutoUpdater.h
author unc0rr
Sat, 25 Dec 2010 23:09:54 +0300
branch0.9.15
changeset 4681 f2c30204a3fd
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Allow 8 teams in server

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif