[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting Account.cs,1.19,1.20
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2005-08-03 18:55:22
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12281/b4_Business/a1_Financial/a2_Accounting Modified Files: Account.cs Log Message: Restored previous code: OptimizationOutput has been deleted from Account. SaveGenomes MenuItem has been deleted from Report. RunEfficientPortfolio now archives Genomes as previously. Index: Account.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/Account.cs,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** Account.cs 31 Jul 2005 20:10:28 -0000 1.19 --- Account.cs 3 Aug 2005 18:55:10 -0000 1.20 *************** *** 60,64 **** private ArrayList activeOrders; private AccountReport accountReport; - private object optimizationOutput = null; --- 60,63 ---- *************** *** 94,107 **** set { accountStrategy = value; } } ! /// <summary> ! /// the object contain a representation of the ! /// optimization working of the script ! /// </summary> ! public object OptimizationOutput ! { ! get { return this.optimizationOutput; } ! set { this.optimizationOutput = value; } ! } ! public TransactionHistory Transactions = new TransactionHistory(); --- 93,97 ---- set { accountStrategy = value; } } ! public TransactionHistory Transactions = new TransactionHistory(); |