scuffed-code/tools/colprobe/targetsetgenerator.h

15 lines
291 B
C
Raw Normal View History

#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