1 // © 2017 and later: Unicode, Inc. and others. 2 // License & terms of use: http://www.unicode.org/copyright.html 3 #include "targetsetgenerator.h" 4 TargetSetGenerator(UnicodeSet & startingSet,CompareFn comparer)5TargetSetGenerator::TargetSetGenerator(UnicodeSet &startingSet, CompareFn comparer) : 6 comparer(comparer), 7 set(startingSet) 8 { 9 addAll(startingSet); 10 } 11