diff options
author | Tom Rondeau <trondeau@vt.edu> | 2011-12-03 12:13:23 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2011-12-03 12:13:23 -0500 |
commit | 2f48e2a60e76072e5436dde860cd602c3882ce5c (patch) | |
tree | 86225c30d21d1bf968fa3bc0af356adde23d9a8b /gruel/src/swig/pmt_swig.i | |
parent | 40e8e55f47d201a2d74e674df39d5e19c82f3e1a (diff) |
docs: adding Python docstrings to gruel/pmt in cmake; dummy file make for autotools to build.
Diffstat (limited to 'gruel/src/swig/pmt_swig.i')
-rw-r--r-- | gruel/src/swig/pmt_swig.i | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gruel/src/swig/pmt_swig.i b/gruel/src/swig/pmt_swig.i index 276d232a42..afc80433ac 100644 --- a/gruel/src/swig/pmt_swig.i +++ b/gruel/src/swig/pmt_swig.i @@ -34,6 +34,9 @@ #include <gruel/pmt.h> %} +//load generated python docstrings +%include "pmt_swig_doc.i" + //////////////////////////////////////////////////////////////////////// // Language independent exception handler //////////////////////////////////////////////////////////////////////// @@ -52,6 +55,14 @@ } +/*! + * \brief this is a test function. + * + * this is only a test. + */ +bool test_pmt_is_symbol(void); + + // Template intrusive_ptr for Swig to avoid dereferencing issues namespace pmt{ class pmt_base; |