QTfrontend/AutoUpdater.h
author belphegorr <szabibibi@gmail.com>
Tue, 10 Jul 2012 23:06:56 +0300
changeset 7251 cba4960b426f
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Fixed a bug where certain ammo types were added to the wrong hogs.

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif