File indexing completed on 2024-05-05 03:56:06

0001 #ifndef _MEIN_XSLT_HELP_H_
0002 #define _MEIN_XSLT_HELP_H_
0003 
0004 #include <QString>
0005 
0006 QString lookForCache(const QString &filename);
0007 
0008 /**
0009  * Compares two files and returns true if @param newer exists and is newer than
0010  * @param older
0011  **/
0012 bool compareTimeStamps(const QString &older, const QString &newer);
0013 
0014 #endif