QTfrontend/AutoUpdater.h
author koda
Fri, 04 Nov 2011 00:38:37 +0100
changeset 6276 1e2f8da1860a
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
while formatting the ammomenu code i found out that it's simpler to move than i thought, and fixed a small glitch when animation was disabled

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif