summaryrefslogtreecommitdiff
path: root/algorithm.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:09:24 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:09:24 +0200
commitb5f042a6c132c1b97cf03c4615bab966c23f57d2 (patch)
tree1cb057a0ffd51264bb3c9807e2133505ce312eb1 /algorithm.h
parent3.11 (diff)
downloadFreeFileSync-b5f042a6c132c1b97cf03c4615bab966c23f57d2.tar.gz
FreeFileSync-b5f042a6c132c1b97cf03c4615bab966c23f57d2.tar.bz2
FreeFileSync-b5f042a6c132c1b97cf03c4615bab966c23f57d2.zip
3.12
Diffstat (limited to 'algorithm.h')
-rw-r--r--algorithm.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/algorithm.h b/algorithm.h
index 7280ed7d..c1acec9e 100644
--- a/algorithm.h
+++ b/algorithm.h
@@ -14,6 +14,8 @@ namespace ffs3
{
class BaseFilter;
+ wxString extractJobName(const wxString& configFilename);
+
void swapGrids(const MainConfiguration& config, FolderComparison& folderCmp);
struct DeterminationProblem //callback
@@ -64,7 +66,6 @@ void deleteFromGridAndHD(FolderComparison& folderCmp, //a
std::vector<FileSystemObject*>& rowsToDeleteOnRight, //all pointers need to be bound!
const bool deleteOnBothSides,
const bool useRecycleBin,
- const MainConfiguration& mainConfig,
DeleteFilesHandler& statusHandler);
}
bgstack15