scuffed-code/tools/colprobe/targetsetgenerator.h
George Rhoten 5bd3f677d5 ICU-4301 Remove executable svn property
X-SVN-Rev: 21927
2007-07-09 07:19:39 +00:00

15 lines
291 B
C++

#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