QTfrontend/AutoUpdater.h
author Medo <smaxein@googlemail.com>
Fri, 30 Nov 2012 15:16:14 +0100
branchflibqtfrontend
changeset 8135 0401d7c216e0
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Fixed flib_weaponset_create creating an empty weaponset (for real this time :P)

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif