QTfrontend/util/platform/AutoUpdater.h
author antonc27 <antonc27@mail.ru>
Wed, 21 Oct 2015 00:49:04 +0200
branchios-revival
changeset 11220 32366eb83383
parent 8381 588a8e6e2041
permissions -rw-r--r--
- Refactoring of Missions screen: - - Now mission's list constructed from 'missions_en.txt' - - In-place localization for mission's names and descriptions

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