Parse free functions
This commit is contained in:
parent
210fcf2c36
commit
9267bbbff2
15 changed files with 442 additions and 58 deletions
|
|
@ -124,11 +124,21 @@ namespace cppast
|
|||
return cursor_;
|
||||
}
|
||||
|
||||
token_iterator begin() const noexcept
|
||||
{
|
||||
return begin_;
|
||||
}
|
||||
|
||||
token_iterator cur() const noexcept
|
||||
{
|
||||
return cur_;
|
||||
}
|
||||
|
||||
token_iterator end() const noexcept
|
||||
{
|
||||
return end_;
|
||||
}
|
||||
|
||||
void set_cur(token_iterator iter) noexcept
|
||||
{
|
||||
cur_ = iter;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue