QTfrontend/AutoUpdater.h
author Xeli
Thu, 07 Jun 2012 01:10:57 +0200
changeset 7191 9419294e5f33
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
first attempt at implementing support for keys with modifiers to use it, the keybinding have to be of the form mod:<modkey>:..:<modkey> <function> <keycode> for instance in an ini file change findhh=h to findhh=mod:lshift h

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif