QTfrontend/AutoUpdater.h
author Henek
Tue, 18 Jan 2011 22:55:58 +0100
changeset 4854 881c8232b66a
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
adding my new Tracker library so mikade can use it with you guys on dev, still might change a bit though

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif