로딩중...
검색중...
일치하는것 없음
stelaTokenDispatcher.hpp
이 파일의 문서화 페이지로 가기
1
2
#pragma once
3
4
#include <list>
5
6
#include "
stela/common.hpp
"
7
8
namespace
by {
14
class
_nout
stelaTokenDispatcher
{
15
BY(ME(
stelaTokenDispatcher
))
16
17
public
:
18
void
add(nint
newToken
);
19
void
addFront(nint
newToken
);
25
nbool
pop
(nint&
output
);
26
27
ncnt
len()
const
;
28
29
void
rel();
30
31
private
:
32
std::list<nint> _toks;
33
};
34
}
common.hpp
by::stelaTokenDispatcher
Token dispatcher for managing token queue during parsing
Definition
stelaTokenDispatcher.hpp:14
by::stelaTokenDispatcher::pop
nbool pop(nint &output)
Removes a token from the front of the queue.
by::tweak
Weak reference smart pointer with type-safe access
Definition
tweak.hpp:16
to Top