QTfrontend/AutoUpdater.h
author nemo
Wed, 05 Dec 2012 13:31:08 -0500
branchflibqtfrontend
changeset 8224 48bb7adc42fe
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
kinda treat graves like hedgehogs for the purpose of looking up hog info

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif