diff options
author | JINMEI Tatuya <jinmei@isc.org> | 2012-11-15 03:41:14 +0100 |
---|---|---|
committer | JINMEI Tatuya <jinmei@isc.org> | 2012-11-15 03:41:14 +0100 |
commit | 31b507f443ec26b5891a2c87daf1754ecc289bdf (patch) | |
tree | 96bf2ffd5e972a4395886b0bbd11f43619e69d80 /src/lib/dns/master_lexer_state.h | |
parent | [2373] (unrelated doc fix) corrected "optionality" of token type (diff) | |
download | kea-31b507f443ec26b5891a2c87daf1754ecc289bdf.tar.xz kea-31b507f443ec26b5891a2c87daf1754ecc289bdf.zip |
[2373] supported quoted string state
Diffstat (limited to 'src/lib/dns/master_lexer_state.h')
-rw-r--r-- | src/lib/dns/master_lexer_state.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/dns/master_lexer_state.h b/src/lib/dns/master_lexer_state.h index 1130f3334f..830e60a3bb 100644 --- a/src/lib/dns/master_lexer_state.h +++ b/src/lib/dns/master_lexer_state.h @@ -98,7 +98,8 @@ public: /// a way to get an instance of a specific state. enum ID { CRLF, ///< Just seen a carriage-return character - String ///< Handling a string token + String, ///< Handling a string token + QString ///< Handling a quoted string token }; /// \brief Returns a \c State instance of the given state. |