Home | History | Annotate | Download | only in Support

Lines Matching defs:Category

141 // Option Category class
155 // The general Option Category (used as default category).
197 OptionCategory *Category; // The Category this option belongs to
235 void setCategory(OptionCategory &C) { Category = &C; }
242 ArgStr(""), HelpStr(""), ValueStr(""), Category(&GeneralCategory) {
340 // cat - Specifiy the Option category for the command line argument to belong
343 OptionCategory &Category;
344 cat(OptionCategory &c) : Category(c) {}
347 void apply(Opt &O) const { O.setCategory(Category); }