* src/ltltest/tostring.cc: New files. * src/ltlvisit/tostring.hh: From ast to string New files. * src/ltlvisit/tostring.cc: From ast to string New files.
15 lines
263 B
C++
15 lines
263 B
C++
#ifndef SPOT_LTLVISIT_AST2STRING_HH
|
|
# define SPOT_LTLVISIT_AST2STRING_HH
|
|
|
|
#include <ltlast/formula.hh>
|
|
#include <iostream>
|
|
|
|
namespace spot
|
|
{
|
|
namespace ltl
|
|
{
|
|
void to_string(const formula& f, std::ostream& os);
|
|
}
|
|
}
|
|
|
|
#endif // SPOT_LTLVISIT_AST2STRING_HH
|