blob: f0532eb7369cf77d6aa731ba1acd3c187213d8a5 [file] [log] [blame]
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
#include "targetsetgenerator.h"
TargetSetGenerator::TargetSetGenerator(UnicodeSet &startingSet, CompareFn comparer) :
comparer(comparer),
set(startingSet)
{
addAll(startingSet);
}