Switch to unified view

a/src/rcldb/synfamily.h b/src/rcldb/synfamily.h
...
...
116
116
117
/** A functor which transforms a string */
117
/** A functor which transforms a string */
118
class SynTermTrans {
118
class SynTermTrans {
119
public:
119
public:
120
    virtual std::string operator()(const std::string&) = 0;
120
    virtual std::string operator()(const std::string&) = 0;
121
    virtual std::string name() { return "SynTermTrans: unknown";}
121
};
122
};
122
123
123
/** A member (set of root-synonyms associations) of a SynFamily for
124
/** A member (set of root-synonyms associations) of a SynFamily for
124
 * which the root is computable from the input term.
125
 * which the root is computable from the input term.
125
 * The objects use a functor member to compute the term root on input
126
 * The objects use a functor member to compute the term root on input