QTfrontend/util/platform/AutoUpdater.h
author koda
Mon, 14 Jan 2013 12:35:01 +0100
changeset 8381 588a8e6e2041
parent 8284 QTfrontend/AutoUpdater.h@a874d00df4a4
permissions -rw-r--r--
move platform code around, based off a gci task by dag10

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
        virtual void checkForUpdatesNow() = 0;
};

#endif