QTfrontend/AutoUpdater.h
author koda
Wed, 07 Jul 2010 03:16:12 +0200
changeset 3628 2b4d878ba565
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
enable tooltips on ipad (todo: disable them on iphone)

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif