diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:05:30 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:05:30 +0200 |
commit | c0fce877c478ddbf71a1b651c789e5ea00a00144 (patch) | |
tree | de01b0ae8fd296bd24fbca54a80f2f0ba071d461 /comparison.h | |
parent | 3.3 (diff) | |
download | FreeFileSync-c0fce877c478ddbf71a1b651c789e5ea00a00144.tar.gz FreeFileSync-c0fce877c478ddbf71a1b651c789e5ea00a00144.tar.bz2 FreeFileSync-c0fce877c478ddbf71a1b651c789e5ea00a00144.zip |
3.4
Diffstat (limited to 'comparison.h')
-rw-r--r-- | comparison.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/comparison.h b/comparison.h index 59ee582c..9c2cf71a 100644 --- a/comparison.h +++ b/comparison.h @@ -1,3 +1,9 @@ +// ************************************************************************** +// * 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) * +// ************************************************************************** +// #ifndef COMPARISON_H_INCLUDED #define COMPARISON_H_INCLUDED @@ -37,10 +43,6 @@ public: CompareProcess(bool traverseSymLinks, unsigned int fileTimeTol, bool ignoreOneHourDiff, -#ifndef _MSC_VER -#warning remove threshold, if not used! -#endif - unsigned int detectRenameThreshold, xmlAccess::OptionalDialogs& warnings, StatusHandler* handler); @@ -53,12 +55,12 @@ private: void compareByContent(const std::vector<FolderPairCfg>& directoryPairsFormatted, FolderComparison& output); - //create comparison result table and fill relation except for files existing on both sides + //create comparison result table and fill category except for files existing on both sides void performBaseComparison(BaseDirMapping& output, std::vector<FileMapping*>& appendUndefined); //buffer accesses to the same directories; useful when multiple folder pairs are used class DirectoryBuffer; - boost::shared_ptr<DirectoryBuffer> directoryBuffer; //std::auto_ptr does not work with forward declarations! + boost::shared_ptr<DirectoryBuffer> directoryBuffer; //std::auto_ptr does not work with forward declarations (Or we need a non-inline ~CompareProcess())! const unsigned int fileTimeTolerance; //max allowed file time deviation const bool ignoreOneHourDifference; |