public SaveContext()
 {
     _relIdGenerator = new RelIdGenerator();
     _sharedStyles = new Dictionary<Int32, StyleInfo>();
     _sharedFonts = new Dictionary<IXLFont, FontInfo>();
     _tableNames = new HashSet<String>();
     _tableId = 0;
 }
 public SaveContext()
 {
     _relIdGenerator = new RelIdGenerator();
     _sharedStyles   = new Dictionary <Int32, StyleInfo>();
     _sharedFonts    = new Dictionary <IXLFont, FontInfo>();
     _tableNames     = new HashSet <String>();
     _tableId        = 0;
 }
 public SaveContext()
 {
     DifferentialFormats = new Dictionary <XLStyleKey, int>();
     PivotTables         = new Dictionary <Guid, PivotTableInfo>();
     RelIdGenerator      = new RelIdGenerator();
     SharedFonts         = new Dictionary <XLFontValue, FontInfo>();
     SharedNumberFormats = new Dictionary <int, NumberFormatInfo>();
     SharedStyles        = new Dictionary <XLStyleKey, StyleInfo>();
     TableId             = 0;
     TableNames          = new HashSet <String>();
 }