QTfrontend/util/platform/AutoUpdater.h
author unc0rr
Fri, 08 Nov 2013 17:53:02 +0400 (2013-11-08)
branchsdl2transition
changeset 9694 e8d0fe885169
parent 8381 588a8e6e2041
permissions -rw-r--r--
- Keyboard bindings seem to work fully - Catch mouse wheel event (bindings don't work for unknown reason)
/*
 * Copyright (C) 2008 Remko Troncon
 */

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
        virtual void checkForUpdatesNow() = 0;
};

#endif