QTfrontend/util/platform/AutoUpdater.h
author unc0rr
Thu, 29 Jan 2015 23:36:58 +0300
branchqmlfrontend
changeset 10754 8dd1cf1be5a2
parent 8381 588a8e6e2041
permissions -rw-r--r--
[flib] yay, some work on schemes

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