diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-06 14:26:51 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-06 14:26:51 -0400 |
commit | ff2f3d23d4edf588dd153cc71a613e596594757e (patch) | |
tree | 82ac8b59e57eb3cfbebfd4dcf9bc8f0d706d8fe8 /python/py_times.cc | |
parent | 0bd232bb23233b38676bb4809dad065e9911c6e0 (diff) | |
download | ledger-ff2f3d23d4edf588dd153cc71a613e596594757e.tar.gz ledger-ff2f3d23d4edf588dd153cc71a613e596594757e.tar.bz2 ledger-ff2f3d23d4edf588dd153cc71a613e596594757e.zip |
Added stubs for all the Python integration classes.
Diffstat (limited to 'python/py_times.cc')
-rw-r--r-- | python/py_times.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/py_times.cc b/python/py_times.cc index 9e6c4339..dfd1769d 100644 --- a/python/py_times.cc +++ b/python/py_times.cc @@ -138,6 +138,11 @@ void export_times() scope().attr("parse_datetime") = &py_parse_datetime; scope().attr("parse_date") = &py_parse_date; + +#if 0 + class_< interval_t > ("Interval") + ; +#endif } } // namespace ledger |