Coverage Report

Created: 2025-08-11 06:28

/src/quantlib/ql/instruments/claim.hpp
Line
Count
Source (jump to first uncovered line)
1
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3
/*
4
 Copyright (C) 2008 StatPro Italia srl
5
6
 This file is part of QuantLib, a free-software/open-source library
7
 for financial quantitative analysts and developers - http://quantlib.org/
8
9
 QuantLib is free software: you can redistribute it and/or modify it
10
 under the terms of the QuantLib license.  You should have received a
11
 copy of the license along with this program; if not, please email
12
 <quantlib-dev@lists.sf.net>. The license is also available online at
13
 <http://quantlib.org/license.shtml>.
14
15
 This program is distributed in the hope that it will be useful, but WITHOUT
16
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17
 FOR A PARTICULAR PURPOSE.  See the license for more details.
18
*/
19
20
/*! \file claim.hpp
21
    \brief Classes for default-event claims.
22
*/
23
24
#ifndef quantlib_claim_hpp
25
#define quantlib_claim_hpp
26
27
#include <ql/instruments/bond.hpp>
28
29
namespace QuantLib {
30
31
    //! Claim associated to a default event
32
    class Claim : public Observable, public Observer {
33
      public:
34
0
        ~Claim() override = default;
35
        virtual Real amount(const Date& defaultDate,
36
                            Real notional,
37
                            Real recoveryRate) const = 0;
38
0
        void update() override { notifyObservers(); }
39
    };
40
41
42
    //! Claim on a notional
43
    class FaceValueClaim : public Claim {
44
      public:
45
        Real amount(const Date& d, Real notional, Real recoveryRate) const override;
46
    };
47
48
    //! Claim on the notional of a reference security, including accrual
49
    class FaceValueAccrualClaim : public Claim {
50
      public:
51
        FaceValueAccrualClaim(
52
                          const ext::shared_ptr<Bond>& referenceSecurity);
53
        Real amount(const Date& d, Real notional, Real recoveryRate) const override;
54
55
      private:
56
        ext::shared_ptr<Bond> referenceSecurity_;
57
    };
58
59
}
60
61
62
#endif