QTfrontend/AutoUpdater.h
author nemo
Wed, 25 Jul 2012 10:56:14 -0400
changeset 7426 55b49cc1f33a
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif