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