[Quantproject-developers] QuantProject/b5_Presentation/MicrosoftExcel ExcelManager.cs,1.1.1.1,1.2
Brought to you by:
glauco_1
|
From: <gla...@us...> - 2003-11-28 15:58:23
|
Update of /cvsroot/quantproject/QuantProject/b5_Presentation/MicrosoftExcel
In directory sc8-pr-cvs1:/tmp/cvs-serv7010/b5_Presentation/MicrosoftExcel
Modified Files:
ExcelManager.cs
Log Message:
- The Add method for the ExcelManager class has
been overridden: now you can add a single ReportTable
Index: ExcelManager.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantProject/b5_Presentation/MicrosoftExcel/ExcelManager.cs,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** ExcelManager.cs 13 Oct 2003 21:59:38 -0000 1.1.1.1
--- ExcelManager.cs 28 Nov 2003 15:58:19 -0000 1.2
***************
*** 45,48 ****
--- 45,52 ----
//
}
+ public static void Add( ReportTable reportTable )
+ {
+ reportTables.Add( reportTable );
+ }
public static void Add( AccountReport accountReport )
{
|