QuantLib
A free/open-source library for quantitative finance
Reference manual - version 1.6
List of all members
FloatingRateCouponPricer Class Referenceabstract

generic pricer for floating-rate coupons More...

#include <ql/cashflows/couponpricer.hpp>

+ Inheritance diagram for FloatingRateCouponPricer:

Public Member Functions

required interface
virtual Real swapletPrice () const =0
 
virtual Rate swapletRate () const =0
 
virtual Real capletPrice (Rate effectiveCap) const =0
 
virtual Rate capletRate (Rate effectiveCap) const =0
 
virtual Real floorletPrice (Rate effectiveFloor) const =0
 
virtual Rate floorletRate (Rate effectiveFloor) const =0
 
virtual void initialize (const FloatingRateCoupon &coupon)=0
 
Observer interface
void update ()
 
- Public Member Functions inherited from Observer
 Observer (const Observer &)
 
Observeroperator= (const Observer &)
 
std::pair< std::set< boost::shared_ptr< Observable > >::iterator, bool > registerWith (const boost::shared_ptr< Observable > &)
 
void registerWithObservables (const boost::shared_ptr< Observer > &)
 
Size unregisterWith (const boost::shared_ptr< Observable > &)
 
void unregisterWithAll ()
 
- Public Member Functions inherited from Observable
 Observable (const Observable &)
 
Observableoperator= (const Observable &)
 
void notifyObservers ()
 

Detailed Description

generic pricer for floating-rate coupons

Member Function Documentation

void update ( )
virtual

This method must be implemented in derived classes. An instance of Observer does not call this method directly: instead, it will be called by the observables the instance registered with when they need to notify any changes.

Implements Observer.