Sign in
appsheet-third-party
/
epplus
/
c6cbbb88a950ad7e281b8dadbcfb2672b202732f
/
.
/
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
();
}
}