blob: cd89734d86bc512f5b424639efb83a9582b4a0e9 [file] [log] [blame]
#ifndef TARGETSETGENERATOR_H
#define TARGETSETGENERATOR_H
#include "colprobe.h"
#include "unicode/uniset.h"
class TargetSetGenerator : public UnicodeSet {
public:
TargetSetGenerator(UnicodeSet &startingSet, CompareFn comparer);
private:
CompareFn comparer;
UnicodeSet set;
};
#endif