[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a3_Ordering HistoricalEndOfDayOrderE
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2005-01-30 19:57:49
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a3_Ordering In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4467/b4_Business/a1_Financial/a3_Ordering Modified Files: HistoricalEndOfDayOrderExecutor.cs Order.cs Log Message: Added "[Serializable]" attribute in order to make the Account class serializable. Index: Order.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a3_Ordering/Order.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Order.cs 29 Nov 2004 16:15:37 -0000 1.2 --- Order.cs 30 Jan 2005 19:57:38 -0000 1.3 *************** *** 33,37 **** /// Summary description for Order. /// </summary> ! public class Order { private OrderType orderType; --- 33,38 ---- /// Summary description for Order. /// </summary> ! [Serializable] ! public class Order { private OrderType orderType; Index: HistoricalEndOfDayOrderExecutor.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a3_Ordering/HistoricalEndOfDayOrderExecutor.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** HistoricalEndOfDayOrderExecutor.cs 9 Jan 2005 23:15:21 -0000 1.3 --- HistoricalEndOfDayOrderExecutor.cs 30 Jan 2005 19:57:38 -0000 1.4 *************** *** 36,39 **** --- 36,40 ---- /// Simulates historical order executions/rejections for end of day simulation /// </summary> + [Serializable] public class HistoricalEndOfDayOrderExecutor : IOrderExecutor { |