diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:09:45 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:09:45 +0200 |
commit | 88c8801298cbf6fec9cdce254c7b3cb9e066a421 (patch) | |
tree | 35a35acf48eb227bac30abc8f87ea9b1c3c57b68 /synchronization.h | |
parent | 3.12 (diff) | |
download | FreeFileSync-88c8801298cbf6fec9cdce254c7b3cb9e066a421.tar.gz FreeFileSync-88c8801298cbf6fec9cdce254c7b3cb9e066a421.tar.bz2 FreeFileSync-88c8801298cbf6fec9cdce254c7b3cb9e066a421.zip |
3.13
Diffstat (limited to 'synchronization.h')
-rw-r--r-- | synchronization.h | 102 |
1 files changed, 97 insertions, 5 deletions
diff --git a/synchronization.h b/synchronization.h index afa36dff..d83315f4 100644 --- a/synchronization.h +++ b/synchronization.h @@ -1,7 +1,7 @@ // ************************************************************************** // * This file is part of the FreeFileSync project. It is distributed under * // * GNU General Public License: http://www.gnu.org/licenses/gpl.html * -// * Copyright (C) 2008-2010 ZenJu (zhnmju123 AT gmx.de) * +// * Copyright (C) 2008-2011 ZenJu (zhnmju123 AT gmx.de) * // ************************************************************************** // #ifndef SYNCHRONIZATION_H_INCLUDED @@ -22,10 +22,16 @@ public: SyncStatistics(const HierarchyObject& hierObj); SyncStatistics(const FolderComparison& folderCmp); - int getCreate( bool inclLeft = true, bool inclRight = true) const; - int getOverwrite(bool inclLeft = true, bool inclRight = true) const; - int getDelete( bool inclLeft = true, bool inclRight = true) const; - int getConflict() const; + int getCreate() const; + template <SelectedSide side> int getCreate() const; + + int getOverwrite() const; + template <SelectedSide side> int getOverwrite() const; + + int getDelete() const; + template <SelectedSide side> int getDelete() const; + + int getConflict() const; typedef std::vector<std::pair<Zstring, wxString> > ConflictTexts; // Pair(filename/conflict text) const ConflictTexts& getFirstConflicts() const; //get first few sync conflicts @@ -94,6 +100,92 @@ private: StatusHandler& statusUpdater; }; + + + + + + + + + + + + + + + + + + + + + + + + + +// inline implementation +template <> +inline +int SyncStatistics::getCreate<LEFT_SIDE>() const +{ + return createLeft; +} + +template <> +inline +int SyncStatistics::getCreate<RIGHT_SIDE>() const +{ + return createRight; +} + +inline +int SyncStatistics::getCreate() const +{ + return getCreate<LEFT_SIDE>() + getCreate<RIGHT_SIDE>(); +} + +template <> +inline +int SyncStatistics::getOverwrite<LEFT_SIDE>() const +{ + return overwriteLeft; +} + +template <> +inline +int SyncStatistics::getOverwrite<RIGHT_SIDE>() const +{ + return overwriteRight; +} + +inline +int SyncStatistics::getOverwrite() const +{ + return getOverwrite<LEFT_SIDE>() + getOverwrite<RIGHT_SIDE>(); +} + + +template <> +inline +int SyncStatistics::getDelete<LEFT_SIDE>() const +{ + return deleteLeft; +} + +template <> +inline +int SyncStatistics::getDelete<RIGHT_SIDE>() const +{ + return deleteRight; +} + +inline +int SyncStatistics::getDelete() const +{ + return getDelete<LEFT_SIDE>() + getDelete<RIGHT_SIDE>(); +} } #endif // SYNCHRONIZATION_H_INCLUDED |