QTfrontend/AutoUpdater.h
author koda
Wed, 25 Aug 2010 00:17:51 +0200
changeset 3765 ebfe7c9b3085
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
set flake to non critical, no touches until game is starding, moved some variables to be initialized in the right place

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif