mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
15 lines
315 B
C
15 lines
315 B
C
![]() |
#ifndef _MEIN_XSLT_HELP_H_
|
||
|
#define _MEIN_XSLT_HELP_H_
|
||
|
|
||
|
#include <QtCore/QString>
|
||
|
|
||
|
QString lookForCache( const QString &filename );
|
||
|
|
||
|
/**
|
||
|
* Compares two files and returns true if @param newer exists and is newer than
|
||
|
* @param older
|
||
|
**/
|
||
|
bool compareTimeStamps( const QString &older, const QString &newer );
|
||
|
|
||
|
#endif
|