blob: 74a0a7eab8e07cb48fc9593327966a2edb530db7 [file] [log] [blame]
using System.Collections.Generic;
namespace OfficeOpenXml.FormulaParsing;
internal class DependencyChain {
internal List<FormulaCell> list = new();
internal Dictionary<ulong, int> index = new();
internal List<int> CalcOrder = new();
internal void Add(FormulaCell f) {
list.Add(f);
f.Index = list.Count - 1;
index.Add(ExcelCellBase.GetCellId(f.SheetID, f.Row, f.Column), f.Index);
}
}