QTfrontend/util/platform/AutoUpdater.h
author koda
Tue, 19 Mar 2013 10:58:46 +0100
branchcmake_pascal
changeset 8790 783669d76b4f
parent 8381 588a8e6e2041
permissions -rw-r--r--
even though pascal linking is scripted, we need target_link_libraries anyways, so that modifying that library, will trigger linking again

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