QTfrontend/AutoUpdater.h
author KoRn666
Sun, 31 Oct 2010 22:18:13 +0100
changeset 4052 dd5e00d79efe
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Jungle theme with a few touches by Palewolf (missing droplets/splash, wrong background size)

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif