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();
}
}