QTfrontend/AutoUpdater.h
author sheepluva
Sun, 18 Sep 2011 16:46:26 +0200
branch0.9.16
changeset 5958 f9e3033d929f
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
set a default value for density that shouldn't lead to div by 0

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif