diff options
author | Li Jin <dragon-fly@qq.com> | 2022-11-15 17:23:46 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2022-11-15 17:52:09 +0800 |
commit | 94f8330613877b3582d32bd11abd83a97b4399ad (patch) | |
tree | 5359de314be1ebde17f8d1e48632a97d18f9e50f /src/3rdParty/efsw/DirectorySnapshotDiff.cpp | |
parent | 60f8f00a022ac08701792b2897b72d8c99b50f52 (diff) | |
download | yuescript-94f8330613877b3582d32bd11abd83a97b4399ad.tar.gz yuescript-94f8330613877b3582d32bd11abd83a97b4399ad.tar.bz2 yuescript-94f8330613877b3582d32bd11abd83a97b4399ad.zip |
adding -w option to Yuescript tool.
Diffstat (limited to 'src/3rdParty/efsw/DirectorySnapshotDiff.cpp')
-rwxr-xr-x | src/3rdParty/efsw/DirectorySnapshotDiff.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/3rdParty/efsw/DirectorySnapshotDiff.cpp b/src/3rdParty/efsw/DirectorySnapshotDiff.cpp new file mode 100755 index 0000000..37ee507 --- /dev/null +++ b/src/3rdParty/efsw/DirectorySnapshotDiff.cpp | |||
@@ -0,0 +1,22 @@ | |||
1 | #include <efsw/DirectorySnapshotDiff.hpp> | ||
2 | |||
3 | namespace efsw { | ||
4 | |||
5 | void DirectorySnapshotDiff::clear() { | ||
6 | FilesCreated.clear(); | ||
7 | FilesModified.clear(); | ||
8 | FilesMoved.clear(); | ||
9 | FilesDeleted.clear(); | ||
10 | DirsCreated.clear(); | ||
11 | DirsModified.clear(); | ||
12 | DirsMoved.clear(); | ||
13 | DirsDeleted.clear(); | ||
14 | } | ||
15 | |||
16 | bool DirectorySnapshotDiff::changed() { | ||
17 | return !FilesCreated.empty() || !FilesModified.empty() || !FilesMoved.empty() || | ||
18 | !FilesDeleted.empty() || !DirsCreated.empty() || !DirsModified.empty() || | ||
19 | !DirsMoved.empty() || !DirsDeleted.empty(); | ||
20 | } | ||
21 | |||
22 | } // namespace efsw | ||