mirror of
https://github.com/JS8Call-improved/JS8Call-improved
synced 2026-08-13 17:47:36 -04:00
Rename all header files with .h extension Fix function declaration in HamlibTransceiver.h that overrode member function but was not marked override Remove unused variable in Modulator.cpp Remove unused files from source tree Remove duplicate LazyFillComboBox files Reformat codebase to LLVM C++ standard
14 lines
212 B
C
14 lines
212 B
C
#ifndef FILEUTILS_H
|
|
#define FILEUTILS_H
|
|
|
|
#include <QFile>
|
|
#ifdef Q_OS_WIN
|
|
#include <windows.h>
|
|
#else
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
void flushFileBuffer(const QFile &f);
|
|
|
|
#endif // FILEUTILS_H
|