QTfrontend/AutoUpdater.h
author valnut
Mon, 16 Jan 2012 10:22:21 +0100
changeset 6579 fc52f7c22c9b
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
GCI task: season greetings

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif