* src/tgba/tgbabddcoredata.hh: Fix some Doxygen comments.

* src/ltlast/formula.hh: More Doxygen comments.
* src/tgba/tgba.hh: Use <tt> in Doxygen comments.
This commit is contained in:
Alexandre Duret-Lutz 2003-06-26 15:06:18 +00:00
parent ecda9e2641
commit f4629246f7
4 changed files with 15 additions and 15 deletions

View file

@ -17,7 +17,9 @@ namespace spot
public:
virtual ~formula();
/// Entry point for vspot::ltl::visitor instances.
virtual void accept(visitor& v) = 0;
/// Entry point for vspot::ltl::const_visitor instances.
virtual void accept(const_visitor& v) const = 0;
/// \brief clone this formula
@ -29,7 +31,7 @@ namespace spot
/// \brief increment reference counter if any
virtual void ref_();
/// \brief decrement reference counter if any, return true when
/// the instance must be delete (usually when the counter hits 0).
/// the instance must be deleted (usually when the counter hits 0).
virtual bool unref_();
};