Update of /cvsroot/quantlibaddin/QuantLibAddin/Clients/Guile
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv13401/Clients/Guile
Modified Files:
capfloor.scm yc_swapdemo.scm
Log Message:
replace 'instanceName/handle' with 'objectID'
Index: yc_swapdemo.scm
===================================================================
RCS file: /cvsroot/quantlibaddin/QuantLibAddin/Clients/Guile/yc_swapdemo.scm,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** yc_swapdemo.scm 19 May 2006 16:56:16 -0000 1.1
--- yc_swapdemo.scm 16 Jul 2006 10:42:41 -0000 1.2
***************
*** 156,160 ****
(call-func qlXibor ; constructor
! "idx" ; handle
"Euribor" ; index name
"EUR" ; currency
--- 156,160 ----
(call-func qlXibor ; constructor
! "idx" ; object ID
"Euribor" ; index name
"EUR" ; currency
***************
*** 170,174 ****
(call-func qlVanillaSwap ; constructor
! "swp" ; handle
(date 11 "Apr" 2005) ; start date
(date 11 "Apr" 2015) ; maturity date
--- 170,174 ----
(call-func qlVanillaSwap ; constructor
! "swp" ; object ID
(date 11 "Apr" 2005) ; start date
(date 11 "Apr" 2015) ; maturity date
Index: capfloor.scm
===================================================================
RCS file: /cvsroot/quantlibaddin/QuantLibAddin/Clients/Guile/capfloor.scm,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** capfloor.scm 19 May 2006 16:56:16 -0000 1.1
--- capfloor.scm 16 Jul 2006 10:42:41 -0000 1.2
***************
*** 81,85 ****
(call-func qlXibor ; constructor
! "IDX" ; handle
"Euribor" ; index name
"EUR" ; currency
--- 81,85 ----
(call-func qlXibor ; constructor
! "IDX" ; object ID
"Euribor" ; index name
"EUR" ; currency
***************
*** 123,129 ****
"floatLeg" "schedule" nominals "IDX" spreads)
! (define (make-option handle option)
(call-func qlCapFloor
! handle
"floatLeg"
"YC"
--- 123,129 ----
"floatLeg" "schedule" nominals "IDX" spreads)
! (define (make-option objectID option)
(call-func qlCapFloor
! objectID
"floatLeg"
"YC"
|