diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:24:59 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:24:59 +0200 |
commit | a1c91f4695e208d5a8f80dc37b1818169b7829ff (patch) | |
tree | 52f5134376d17c99b6c9e53133a2eb5cf171377c /synchronization.h | |
parent | 5.16 (diff) | |
download | FreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.tar.gz FreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.tar.bz2 FreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.zip |
5.17
Diffstat (limited to 'synchronization.h')
-rw-r--r-- | synchronization.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/synchronization.h b/synchronization.h index e9d15e29..9fb0ef06 100644 --- a/synchronization.h +++ b/synchronization.h @@ -21,7 +21,7 @@ class SyncStatistics //this class counts *logical* operations, (create, update, public: SyncStatistics(const HierarchyObject& hierObj); SyncStatistics(const FolderComparison& folderCmp); - SyncStatistics(const FileMapping& fileObj); + SyncStatistics(const FilePair& fileObj); int getCreate() const; template <SelectedSide side> int getCreate() const; @@ -45,9 +45,9 @@ private: void recurse(const HierarchyObject& hierObj); - void calcStats(const FileMapping& fileObj); - void calcStats(const SymLinkMapping& linkObj); - void calcStats(const DirMapping& dirObj); + void calcStats(const FilePair& fileObj); + void calcStats(const SymlinkPair& linkObj); + void calcStats(const DirPair& dirObj); int createLeft, createRight; int updateLeft, updateRight; |