QTfrontend/AutoUpdater.h
author koda
Sat, 26 Nov 2011 17:47:55 +0100
changeset 6441 9e5a3b2a3c38
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
raise the minimum qt version required to 4.6; this was needed as the new animation frameworks were absent in 4.5 and lower

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif