| 291 | PosIntChoice::PosIntChoice(const Brancher& b, unsigned int a, int p, int n) |
| 292 | : Choice(b,a), _pos(p), _val(n) {} |
| 293 | forceinline int |
| 294 | PosIntChoice::pos(void) const { |
| 295 | return _pos; |
| 296 | } |
| 297 | forceinline int |
| 298 | PosIntChoice::val(void) const { |
| 299 | return _val; |