QTfrontend/util/platform/AutoUpdater.h
author unc0rr
Wed, 20 Mar 2013 09:13:05 +0400
changeset 8757 266df6d5ed73
parent 8381 588a8e6e2041
permissions -rw-r--r--
Add space for better visual performance

/*
 * 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