QuantLib: a free/open-source library for quantitative finance
Reference manual - version 1.40
Loading...
Searching...
No Matches
LastFixingQuote Class Reference

Quote adapter for the last fixing available of a given Index. More...

#include <ql/quotes/lastfixingquote.hpp>

Inheritance diagram for LastFixingQuote:

Public Member Functions

 LastFixingQuote (ext::shared_ptr< Index > index)
Quote interface
Real value () const override
 returns the current value
bool isValid () const override
 returns true if the Quote holds a valid value
Observer interface
void update () override
Public Member Functions inherited from Observable
 Observable (const Observable &)
Observableoperator= (const Observable &)
 Observable (Observable &&)=delete
Observableoperator= (Observable &&)=delete
void notifyObservers ()
Public Member Functions inherited from Observer
 Observer (const Observer &)
Observeroperator= (const Observer &)
std::pair< iterator, bool > registerWith (const ext::shared_ptr< Observable > &)
void registerWithObservables (const ext::shared_ptr< Observer > &)
Size unregisterWith (const ext::shared_ptr< Observable > &)
void unregisterWithAll ()
virtual void deepUpdate ()

LastFixingQuote interface

ext::shared_ptr< Indexindex_
const ext::shared_ptr< Index > & index () const
Date referenceDate () const

Additional Inherited Members

Public Types inherited from Observer
typedef set_type::iterator iterator

Detailed Description

Quote adapter for the last fixing available of a given Index.

Member Function Documentation

◆ value()

Real value ( ) const
overridevirtual

returns the current value

Implements Quote.

◆ isValid()

bool isValid ( ) const
overridevirtual

returns true if the Quote holds a valid value

Implements Quote.

◆ update()

void update ( )
overridevirtual

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.