HTML token base class.
More...
#include <stdex/html.hpp>
|
template<class TR = std::char_traits<char>, class AX = std::allocator<char>> |
size_t | append_tag (std::basic_string< char, TR, AX > &str) const |
| Appends token tag to the source code.
|
|
template<class TR = std::char_traits<wchar_t>, class AX = std::allocator<wchar_t>> |
size_t | append_tag (std::basic_string< wchar_t, TR, AX > &str) const |
| Appends token tag to the source code.
|
|
|
template<class T > |
static token * | parse_tag (const T *str, size_t &offset) |
|
|
token_t | type |
| Token type.
|
|
sequence * | sequence |
| Pointer to the sequence this token represents or nullptr when it doesn't trivially represent one sequence.
|
|
uintptr_t | data |
| Any user-supplied data.
|
|
|
| token (token_t _type=token_t::root, sequence *_sequence=nullptr, uintptr_t _data=0) |
|
|
template<class T , class TR , class AX > |
class | parser |
|
◆ append_tag() [1/2]
template<class TR = std::char_traits<char>, class AX = std::allocator<char>>
size_t stdex::html::token::append_tag |
( |
std::basic_string< char, TR, AX > & | str | ) |
const |
|
inline |
Appends token tag to the source code.
- Parameters
-
- Returns
- Number of code units appended
◆ append_tag() [2/2]
template<class TR = std::char_traits<wchar_t>, class AX = std::allocator<wchar_t>>
size_t stdex::html::token::append_tag |
( |
std::basic_string< wchar_t, TR, AX > & | str | ) |
const |
|
inline |
Appends token tag to the source code.
- Parameters
-
- Returns
- Number of code units appended
The documentation for this class was generated from the following file: