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