QTfrontend/AutoUpdater.h
author Medo <smaxein@googlemail.com>
Thu, 05 Jul 2012 22:22:48 +0200
changeset 7318 a446eafcddeb
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Improved asset moving time by an order of magnitude (3s vs. 25s on my device)

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif