QTfrontend/util/platform/AutoUpdater.h
author antonc27 <antonc27@mail.ru>
Fri, 06 Nov 2015 03:21:00 +0100
branchios-revival
changeset 11313 4701700276f5
parent 8381 588a8e6e2041
permissions -rw-r--r--
- 'iOS Deployment Target' bump to 8.0 - Xcode projects updated to recommended settings - 'Bundle Identifier' changed back to old one

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