-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allow to build ActualActual with schedule
- Loading branch information
1 parent
6b01b9a
commit 5ae48fe
Showing
2 changed files
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
from quantlib.time._daycounter cimport DayCounter | ||
from quantlib.time._schedule cimport Schedule | ||
|
||
|
||
|
||
cdef extern from 'ql/time/daycounters/actualactual.hpp' namespace 'QuantLib': | ||
cdef extern from 'ql/time/daycounters/actualactual.hpp' namespace 'QuantLib' nogil: | ||
cdef cppclass ActualActual(DayCounter): | ||
enum Convention: | ||
pass | ||
ActualActual(Convention) | ||
ActualActual(Convention c) | ||
ActualActual(Convention c, const Schedule& schedule) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters