Skip to content

Commit

Permalink
Add register handler to DFA.
Browse files Browse the repository at this point in the history
  • Loading branch information
SharafMohamed committed Dec 12, 2024
1 parent 74841b0 commit f84cd0b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/log_surgeon/finite_automata/Dfa.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#include <log_surgeon/finite_automata/DfaStatePair.hpp>
#include <log_surgeon/finite_automata/Nfa.hpp>
#include <log_surgeon/finite_automata/RegisterHandler.hpp>

namespace log_surgeon::finite_automata {
template <typename TypedDfaState>
Expand Down Expand Up @@ -38,6 +39,7 @@ class Dfa {

private:
std::vector<std::unique_ptr<TypedDfaState>> m_states;
RegisterHandler m_register_handler;
};

template <typename TypedDfaState>
Expand Down

0 comments on commit f84cd0b

Please sign in to comment.