QTfrontend/AutoUpdater.h
author nemo
Mon, 11 Oct 2010 16:28:54 -0400
changeset 3969 5f4ef3db0a65
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Ok. Let's disable the right one this time. In fact, let's just remove newgrave entirely - no point in half-measures.

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif