mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 10:22:50 +00:00
14 lines
315 B
C
14 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
|