| 2191 | public: |
| 2192 | /// Specification of a %DFA transition |
| 2193 | class Transition { |
| 2194 | public: |
| 2195 | int i_state; ///< input state |
| 2196 | int symbol; ///< symbol |
| 2197 | int o_state; ///< output state |
| 2198 | /// Default constructor |
| 2199 | Transition(void); |
| 2200 | /// Initialize members |
| 2201 | Transition(int i_state0, int symbol0, int o_state0); |
| 2202 | }; |
| 2203 | /// Iterator for %DFA transitions (sorted by symbols) |
| 2204 | class Transitions { |
| 2205 | private: |
no outgoing calls
no test coverage detected