[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting ReportTab
Brought to you by:
glauco_1
|
From: <gla...@us...> - 2003-11-08 20:55:57
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting
In directory sc8-pr-cvs1:/tmp/cvs-serv12933/b4_Business/a1_Financial/a2_Accounting/h5_Reporting
Modified Files:
ReportTable.cs
Log Message:
Base class for report tables (like Transactions, RoundTrades,
Equity and Summary)
Index: ReportTable.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/ReportTable.cs,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** ReportTable.cs 13 Oct 2003 21:59:01 -0000 1.1.1.1
--- ReportTable.cs 8 Nov 2003 20:55:54 -0000 1.2
***************
*** 41,44 ****
--- 41,45 ----
{
get { return dataTable; }
+ set { dataTable = value; }
}
***************
*** 47,50 ****
--- 48,55 ----
this.name = name;
this.dataTable = dataTable;
+ }
+ public ReportTable( string name )
+ {
+ this.name = name;
}
}
|