diff options
Diffstat (limited to 'shared/qtlockedfile/qtlockedfile_unix.cpp')
-rw-r--r-- | shared/qtlockedfile/qtlockedfile_unix.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/shared/qtlockedfile/qtlockedfile_unix.cpp b/shared/qtlockedfile/qtlockedfile_unix.cpp index 0a9ba5ab47..9eb932411e 100644 --- a/shared/qtlockedfile/qtlockedfile_unix.cpp +++ b/shared/qtlockedfile/qtlockedfile_unix.cpp @@ -30,13 +30,14 @@ ** 1.2, included in the file GPL_EXCEPTION.txt in this package. ** ***************************************************************************/ + +#include "qtlockedfile.h" + #include <string.h> #include <errno.h> #include <unistd.h> #include <fcntl.h> -#include "qtlockedfile.h" - namespace SharedTools { bool QtLockedFile::lock(LockMode mode, bool block) @@ -107,4 +108,4 @@ QtLockedFile::~QtLockedFile() unlock(); } -} +} // namespace SharedTools |