QTfrontend/AutoUpdater.h
author nemo
Sat, 17 Nov 2012 09:03:47 -0500
changeset 8051 f26422ef0333
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif