QTfrontend/AutoUpdater.h
author koda
Mon, 24 Dec 2012 15:41:45 +0100
changeset 8323 ab0b618bdf13
parent 8284 a874d00df4a4
permissions -rw-r--r--
get executable directory at runtime rather than configure time

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
        virtual void checkForUpdatesNow() = 0;
};

#endif