Sign in
appsheet-third-party
/
epplus
/
fe103a398910067fe4a58c54b9a5c74f5e817889
/
.
/
EPPlus
/
FormulaParsing
/
LexicalAnalysis
/
ITokenIndexProvider.cs
blob: 6a7f6c4c7acac5a27fbf7ceb43142fa35c77058e [
file
] [
log
] [
blame
]
using
System
;
using
System
.
Collections
.
Generic
;
using
System
.
Linq
;
using
System
.
Text
;
namespace
OfficeOpenXml
.
FormulaParsing
.
LexicalAnalysis
{
public
interface
ITokenIndexProvider
{
int
Index
{
get
;
}
void
MoveIndexPointerForward
();
}
}