QTfrontend/AutoUpdater.h
author unc0rr
Mon, 06 Aug 2012 23:30:58 +0400
changeset 7511 1841d5cf899f
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
More mess in pas2c: - Store rendered type declaration of identifier - Convert 'for' cycles properly (well, not sure, but I tried :P) into 'do .. while()'

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif