QTfrontend/util/platform/AutoUpdater.h
author unc0rr
Thu, 10 Oct 2013 15:05:51 +0400
changeset 9511 1be565d7b4b7
parent 8381 588a8e6e2041
permissions -rw-r--r--
Fill PageEditTeam containers only when it is actually required: - Reduces frontend startup time for 20-25% on my test machine - Also reduces memory usage when the page hasn't been shown

/*
 * 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