summaryrefslogtreecommitdiff
path: root/structures.cpp
blob: e90ffe58d2cb9644ea05ca741aa4e2d260eb4534 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "structures.h"
#include "library/fileHandling.h"

using namespace FreeFileSync;

MainConfiguration::MainConfiguration() :
        compareVar(CMP_BY_TIME_SIZE),
        filterIsActive(false),        //do not filter by default
        includeFilter(wxT("*")),      //include all files/folders
        excludeFilter(wxEmptyString), //exclude nothing
        useRecycleBin(FreeFileSync::recycleBinExists()) {} //enable if OS supports it; else user will have to activate first and then get an error message

bgstack15