Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.ExtLibs/HeuristicLab.EPPlus/4.0.3/EPPlus-4.0.3/FormulaParsing/DependencyChain/DependencyChain.cs @ 15682

Last change on this file since 15682 was 12074, checked in by sraggl, 10 years ago

#2341: Added EPPlus-4.0.3 to ExtLibs

File size: 550 bytes
Line 
1using System.Collections.Generic;
2
3namespace OfficeOpenXml.FormulaParsing
4{
5    internal class DependencyChain
6    {
7        internal List<FormulaCell> list = new List<FormulaCell>();
8        internal Dictionary<ulong, int> index = new Dictionary<ulong, int>();
9        internal List<int> CalcOrder = new List<int>();
10        internal void Add(FormulaCell f)
11        {
12            list.Add(f);
13            f.Index = list.Count - 1;
14            index.Add(ExcelCellBase.GetCellID(f.SheetID, f.Row, f.Column), f.Index);
15        }
16    }
17}
Note: See TracBrowser for help on using the repository browser.