Skip to content

Commit f84cd0b

Browse files
committed
Add register handler to DFA.
1 parent 74841b0 commit f84cd0b

File tree

1 file changed

+2
-0
lines changed
  • src/log_surgeon/finite_automata

1 file changed

+2
-0
lines changed

src/log_surgeon/finite_automata/Dfa.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
#include <log_surgeon/finite_automata/DfaStatePair.hpp>
1010
#include <log_surgeon/finite_automata/Nfa.hpp>
11+
#include <log_surgeon/finite_automata/RegisterHandler.hpp>
1112

1213
namespace log_surgeon::finite_automata {
1314
template <typename TypedDfaState>
@@ -38,6 +39,7 @@ class Dfa {
3839

3940
private:
4041
std::vector<std::unique_ptr<TypedDfaState>> m_states;
42+
RegisterHandler m_register_handler;
4143
};
4244

4345
template <typename TypedDfaState>

0 commit comments

Comments
 (0)