QTfrontend/AutoUpdater.h
author nemo
Sun, 03 Jul 2011 20:01:13 -0400
changeset 5384 83d3b50d7e24
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
separate landpixels/land despeckling results to avoid desyncing on blurry land due to extra despeckling passes. right now, this does mean landpixels edge-of-block recheck is not done

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif