public IndexedCashFlow(double notional, Index index, Date baseDate, Date fixingDate, Date paymentDate, bool growthOnly = false) { notional_ = notional; index_=index; baseDate_ = baseDate; fixingDate_ = fixingDate; paymentDate_= paymentDate; growthOnly_ = growthOnly; }
public LastFixingQuote(Index index) { index_ = index; index_.registerWith(update); }