scuffed-code/tools/colprobe/targetsetgenerator.cpp

11 lines
299 B
C++

// © 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);
}