* doc/Makefile.am (doc): Typo.
* src/ltlvisit/tostring.hh (to_string): Add doxygen comments. * src/ltlast/multop.hh (multop::paircmp): Add doxygen comments. * src/ltlvisit/postfix.hh: Typo.
This commit is contained in:
parent
05f724108d
commit
483507f16e
11 changed files with 26 additions and 12 deletions
|
|
@ -8,7 +8,7 @@ namespace spot
|
|||
{
|
||||
namespace ltl
|
||||
{
|
||||
/// \brief Apply a algorithm on each node of an AST,
|
||||
/// \brief Apply an algorithm on each node of an AST,
|
||||
/// during a postfix traversal.
|
||||
///
|
||||
/// Override one or more of the postifix_visitor::doit methods
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef SPOT_LTLVISIT_AST2STRING_HH
|
||||
# define SPOT_LTLVISIT_AST2STRING_HH
|
||||
#ifndef SPOT_LTLVISIT_TOSTRING_HH
|
||||
# define SPOT_LTLVISIT_TOSTRING_HH
|
||||
|
||||
#include <ltlast/formula.hh>
|
||||
#include <iostream>
|
||||
|
|
@ -8,9 +8,15 @@ namespace spot
|
|||
{
|
||||
namespace ltl
|
||||
{
|
||||
/// \brief Output a formula as a (parsable) string.
|
||||
/// \param f The formula to translate.
|
||||
/// \param os The stream where it should be output.
|
||||
std::ostream& to_string(const formula* f, std::ostream& os);
|
||||
|
||||
/// \brief Convert a formula into a (parsable) string.
|
||||
/// \param f The formula to translate.
|
||||
std::string to_string(const formula* f);
|
||||
}
|
||||
}
|
||||
|
||||
#endif // SPOT_LTLVISIT_AST2STRING_HH
|
||||
#endif // SPOT_LTLVISIT_TOSTRING_HH
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue