* src/tgba/bddprint.hh, src/tgba/bddprint.cc: New files.

* src/tgba/Makefile.am (libtgba_la_SOURCES): Add them.
* src/tgba/public.hh: Include bddprint.hh.
This commit is contained in:
Alexandre Duret-Lutz 2003-05-26 13:37:14 +00:00
parent 885143309a
commit 16c6219988
5 changed files with 107 additions and 1 deletions

22
src/tgba/bddprint.hh Normal file
View file

@ -0,0 +1,22 @@
#ifndef SPOT_TGBA_BDDPRINT_HH
# define SPOT_TGBA_BDDPRINT_HH
#include <iostream>
#include "tgbabdddict.hh"
#include <bdd.h>
namespace spot
{
std::ostream& bdd_print_set(std::ostream& os,
const tgba_bdd_dict& dict, bdd b);
std::ostream& bdd_print_dot(std::ostream& os,
const tgba_bdd_dict& dict, bdd b);
std::ostream& bdd_print_table(std::ostream& os,
const tgba_bdd_dict& dict, bdd b);
}
#endif // SPOT_TGBA_BDDPRINT_HH