12e5b6d6dSopenharmony_ci// © 2017 and later: Unicode, Inc. and others. 22e5b6d6dSopenharmony_ci// License & terms of use: http://www.unicode.org/copyright.html 32e5b6d6dSopenharmony_ci#include "targetsetgenerator.h" 42e5b6d6dSopenharmony_ci 52e5b6d6dSopenharmony_ciTargetSetGenerator::TargetSetGenerator(UnicodeSet &startingSet, CompareFn comparer) : 62e5b6d6dSopenharmony_ci comparer(comparer), 72e5b6d6dSopenharmony_ci set(startingSet) 82e5b6d6dSopenharmony_ci{ 92e5b6d6dSopenharmony_ci addAll(startingSet); 102e5b6d6dSopenharmony_ci} 11