QTfrontend/AutoUpdater.h
author mk12
Fri, 07 Dec 2012 16:03:53 -0500
changeset 8266 927da572bcdc
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
will fix this http://code.google.com/p/hedgewars/source/detail?r=9f0e79ab51f00f3b1e133ae70cdd63f6963439c0 and will allow hedgewars to build without video recording enabled, for the time being although i want to talk to koda or someone to understand what should be #ifdef'd and if i've done too much or too little.. but at least that will let it build

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif