QTfrontend/util/platform/AutoUpdater.h
author unc0rr
Sun, 17 Feb 2013 00:25:53 +0400
changeset 8508 f849b7b3af1d
parent 8381 588a8e6e2041
permissions -rw-r--r--
- Ensure that team file exists before saving into it (same fix as for hedgewars.ini, due to bug in Qt) - Fix build with .pro file

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