* 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.
This commit is contained in:
Alexandre Duret-Lutz 2003-08-06 09:43:37 +00:00
parent a5e04a10e6
commit fe2f726863
7 changed files with 18 additions and 11 deletions

View file

@ -9,12 +9,12 @@ namespace spot
namespace ltl
{
/// \brief Write a formula tree using dot's syntax.
/// \param f The formula to translate.
/// \param os The stream where it should be output.
/// \param f The formula to translate.
///
/// \c dot is part of the GraphViz package
/// http://www.research.att.com/sw/tools/graphviz/
std::ostream& dotty(const formula* f, std::ostream& os);
std::ostream& dotty(std::ostream& os, const formula* f);
}
}