QTfrontend/AutoUpdater.h
author nemo
Thu, 15 Sep 2011 22:53:47 -0400
changeset 5926 09bbc7b88714
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
2 extra steps was still occasionally causing problems w/ edge cases. hopefully 3 should do the trick

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif