diff options
author | eb | 2009-05-14 18:29:26 +0000 |
---|---|---|
committer | eb | 2009-05-14 18:29:26 +0000 |
commit | 349331a884594a9e242231bffb03112b8943883c (patch) | |
tree | 9d765ce9484f84eeb95e74facb1c522dd1ff90e2 /pmt/src/lib/pmt.h | |
parent | 18f685853b2bf1914148cb07a9c6df76f5063ff3 (diff) | |
download | gnuradio-349331a884594a9e242231bffb03112b8943883c.tar.gz gnuradio-349331a884594a9e242231bffb03112b8943883c.tar.bz2 gnuradio-349331a884594a9e242231bffb03112b8943883c.zip |
Doc fixes. Merged eb/t367 -r11020:11025 to trunk. This changeset
moves the primary doxygen configuration under the top-level docs
directory. It creates a new "docs" top-level component that can be
enabled/disabled using the configure --disable-docs option. At this
time, the --enable-doxygen option is still required to enable the
generation of the doxygen documents. I think the flag should probably
be removed, and default to "yes" if we find doxygen on the path. The
user can disable the doc generation using --disable-docs if desired.
The doxygen config file has been modified such that doxygen is now
only run on the C++ sources. No attempt is made to process the python
code using doxygen. This results in a less confusing set of docs for
the the C++ API. Straightening out the python docs is left for later.
Many classes are currently misclassified (\ingroup <wrong>). That
will probably require another day of work, that I can't get to right now.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11027 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'pmt/src/lib/pmt.h')
-rw-r--r-- | pmt/src/lib/pmt.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/pmt/src/lib/pmt.h b/pmt/src/lib/pmt.h index 57945f70e..a69d24a05 100644 --- a/pmt/src/lib/pmt.h +++ b/pmt/src/lib/pmt.h @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2006 Free Software Foundation, Inc. + * Copyright 2006,2009 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -83,19 +83,19 @@ public: * I.e., there is a single false value, #f. * ------------------------------------------------------------------------ */ -extern const pmt_t PMT_T; //< #t : boolean true constant -extern const pmt_t PMT_F; //< #f : boolean false constant +extern const pmt_t PMT_T; //< \#t : boolean true constant +extern const pmt_t PMT_F; //< \#f : boolean false constant -//! Return true if obj is #t or #f, else return false. +//! Return true if obj is \#t or \#f, else return false. bool pmt_is_bool(pmt_t obj); -//! Return false if obj is #f, else return true. +//! Return false if obj is \#f, else return true. bool pmt_is_true(pmt_t obj); -//! Return true if obj is #f, else return true. +//! Return true if obj is \#f, else return true. bool pmt_is_false(pmt_t obj); -//! Return #f is val is false, else return #t. +//! Return \#f is val is false, else return \#t. pmt_t pmt_from_bool(bool val); //! Return true if val is PMT_T, return false when val is PMT_F, @@ -457,7 +457,7 @@ bool pmt_eq(pmt_t x, pmt_t y); * <pre> * eqv returns true if: * x and y are the same object. - * x and y are both #t or both #f. + * x and y are both \#t or both \#f. * x and y are both symbols and their names are the same. * x and y are both numbers, and are numerically equal. * x and y are both the empty list (nil). @@ -483,7 +483,7 @@ size_t pmt_length(pmt_t v); * and return that pair. * * \p alist (for "association list") must be a list of pairs. If no pair - * in \p alist has \p obj as its car then #f is returned. + * in \p alist has \p obj as its car then \#f is returned. * Uses pmt_eq to compare \p obj with car fields of the pairs in \p alist. */ pmt_t pmt_assq(pmt_t obj, pmt_t alist); @@ -493,7 +493,7 @@ pmt_t pmt_assq(pmt_t obj, pmt_t alist); * and return that pair. * * \p alist (for "association list") must be a list of pairs. If no pair - * in \p alist has \p obj as its car then #f is returned. + * in \p alist has \p obj as its car then \#f is returned. * Uses pmt_eqv to compare \p obj with car fields of the pairs in \p alist. */ pmt_t pmt_assv(pmt_t obj, pmt_t alist); @@ -503,7 +503,7 @@ pmt_t pmt_assv(pmt_t obj, pmt_t alist); * and return that pair. * * \p alist (for "association list") must be a list of pairs. If no pair - * in \p alist has \p obj as its car then #f is returned. + * in \p alist has \p obj as its car then \#f is returned. * Uses pmt_equal to compare \p obj with car fields of the pairs in \p alist. */ pmt_t pmt_assoc(pmt_t obj, pmt_t alist); @@ -553,21 +553,21 @@ pmt_t pmt_nthcdr(size_t n, pmt_t list); /*! * \brief Return the first sublist of \p list whose car is \p obj. - * If \p obj does not occur in \p list, then #f is returned. + * If \p obj does not occur in \p list, then \#f is returned. * pmt_memq use pmt_eq to compare \p obj with the elements of \p list. */ pmt_t pmt_memq(pmt_t obj, pmt_t list); /*! * \brief Return the first sublist of \p list whose car is \p obj. - * If \p obj does not occur in \p list, then #f is returned. + * If \p obj does not occur in \p list, then \#f is returned. * pmt_memv use pmt_eqv to compare \p obj with the elements of \p list. */ pmt_t pmt_memv(pmt_t obj, pmt_t list); /*! * \brief Return the first sublist of \p list whose car is \p obj. - * If \p obj does not occur in \p list, then #f is returned. + * If \p obj does not occur in \p list, then \#f is returned. * pmt_member use pmt_equal to compare \p obj with the elements of \p list. */ pmt_t pmt_member(pmt_t obj, pmt_t list); |