diff options
author | crupest <crupest@outlook.com> | 2022-01-15 18:42:32 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-01-15 18:42:32 +0800 |
commit | b6757b263ed304aed22eb2a472805f87bfb67f3a (patch) | |
tree | c1e54a9348d4b3d4af3c10629876e380778d2e72 /include/cru/common/io/UnixFileStream.hpp | |
parent | 76b631144e008006efb3894c16e6fd04608d0b68 (diff) | |
download | cru-b6757b263ed304aed22eb2a472805f87bfb67f3a.tar.gz cru-b6757b263ed304aed22eb2a472805f87bfb67f3a.tar.bz2 cru-b6757b263ed304aed22eb2a472805f87bfb67f3a.zip |
...
Diffstat (limited to 'include/cru/common/io/UnixFileStream.hpp')
-rw-r--r-- | include/cru/common/io/UnixFileStream.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/cru/common/io/UnixFileStream.hpp b/include/cru/common/io/UnixFileStream.hpp index c8c3fe52..afeab184 100644 --- a/include/cru/common/io/UnixFileStream.hpp +++ b/include/cru/common/io/UnixFileStream.hpp @@ -1,5 +1,9 @@ #pragma once +#include "../PreConfig.hpp" + +#ifdef CRU_PLATFORM_UNIX + #include "../String.hpp" #include "OpenFileFlag.hpp" #include "Stream.hpp" @@ -39,3 +43,5 @@ class UnixFileStream : public Stream { bool closed_ = false; }; } // namespace cru::io + +#endif |