QTfrontend/AutoUpdater.h
author nemo
Mon, 14 Nov 2011 22:41:08 -0500
changeset 6384 8b7e8ff1b16a
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Disable loading content.html on startup, it is fetched on pushing to top of stack already.

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif