• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // © 2017 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 #ifndef TARGETSETGENERATOR_H
4 #define TARGETSETGENERATOR_H
5 
6 #include "colprobe.h"
7 #include "unicode/uniset.h"
8 
9 class TargetSetGenerator : public UnicodeSet {
10 public:
11   TargetSetGenerator(UnicodeSet &startingSet, CompareFn comparer);
12 private:
13   CompareFn comparer;
14   UnicodeSet set;
15 };
16 
17 #endif