QTfrontend/util/platform/AutoUpdater.h
author koda
Mon, 03 Jun 2013 23:23:46 +0200
branch0.9.19
changeset 9111 f529fba57ba5
parent 8381 588a8e6e2041
permissions -rw-r--r--
yay no more linking workarounds (for statically linking physfs on 32 bit arch, bringing divd3 or stdc++ or gcc_s.so.1 dependencies)

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