QTfrontend/util/platform/AutoUpdater.h
author nemo
Wed, 05 Dec 2018 09:38:31 -0500
branch0.9.25
changeset 14366 2ab312c47dc3
parent 8381 588a8e6e2041
permissions -rw-r--r--
make pas2c function without haskell aborting if locale is C

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