15 lines
218 B
C
15 lines
218 B
C
|
#ifndef FILEUTILS_H
|
||
|
#define FILEUTILS_H
|
||
|
|
||
|
#include <QFile>
|
||
|
#ifdef Q_OS_WIN
|
||
|
# include <windows.h>
|
||
|
#else
|
||
|
# include <unistd.h>
|
||
|
# include <sys/stat.h>
|
||
|
#endif
|
||
|
|
||
|
void flushFileBuffer(const QFile &f);
|
||
|
|
||
|
#endif // FILEUTILS_H
|