spot/src/ltlvisit/dump.hh
Alexandre Duret-Lutz fe2f726863 * src/ltlvisit/dotty.hh (dotty): Move the ostream argument first.
* src/ltlvisit/dump.hh (dump): Likewise.
* src/ltltest/equals.cc, src/ltltest/readltl.cc,
src/ltlvisit/dotty.cc, src/ltlvisit/dump.cc: Adjust.
2003-08-06 09:43:37 +00:00

20 lines
446 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 os The stream where it should be output.
/// \param f The formula to dump.
///
/// This is useful to display a formula when debugging.
std::ostream& dump(std::ostream& os, const formula* f);
}
}
#endif // SPOT_LTLVISIT_DUMP_HH