spot/src/ltlvisit/dump.hh
Alexandre Duret-Lutz 7685d3a5b8 * src/ltlvisit/dump.hh (dump): Take a formula* as argument,
not a formula&.  This is more homogeneous.
* src/ltlvisit/dump.cc (dump): Likewise.
* src/ltlvisit/dotty.hh (dotty): Likewise.
* src/ltlvisit/dotty.cc (dotty): Likewise.
* src/ltlvisit/tostring.hh (to_string): Likewise.
* src/ltlvisit/tostring.cc (to_string): Likewise.
* src/ltltest/readltl.cc, src/ltltest/equals.cc,
src/ltltest/tostring.cc: Adjust usage.
2003-05-16 08:10:58 +00:00

20 lines
437 B
C++

#ifndef SPOT_LTLVISIT_DUMP_HH
# define SPOT_LTLVISIT_DUMP_HH
#include "ltlast/formula.hh"
#include <iostream>
namespace spot
{
namespace ltl
{
/// \brief Dump a formula tree.
/// \param f The formula to dump.
/// \param os The stream where it should be output.
///
/// This is useful to display a formula when debugging.
void dump(const formula* f, std::ostream& os);
}
}
#endif // SPOT_LTLVISIT_DUMP_HH