QTfrontend/AutoUpdater.h
author koda
Tue, 20 Nov 2012 18:33:09 +0100
changeset 8073 5a289ef40fdb
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
physfs compilation on windows * external calls must always be named * physfs has to be compiled as dll * there shouln't be external variables, implemented a function that sets buffer * physfs extras is now integrated in main physfs * removed physfs extras

/*
 * Copyright (C) 2008 Remko Troncon
 */

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif