1#ifndef _MEIN_XSLT_HELP_H_
2#define _MEIN_XSLT_HELP_H_
3
4#include <QtCore/QString>
5
6QString lookForCache( const QString &filename );
7
8/**
9 * Compares two files and returns true if @param newer exists and is newer than
10 * @param older
11 **/
12bool compareTimeStamps( const QString &older, const QString &newer );
13
14#endif
15