* src/tgba/tgba.hh: Rename as ...

* src/tgba/public.hh: .. this.
* src/tgba/tgba.hh: New file.
* src/tgba/Makefile.am (libtgba_la_SOURCES): Add public.hh.
* src/tgba/tgbabddconcrete.hh (tgba_bdd_concrete): Inherit from tgba.
(tgba_bdd_concrete::init_iter): Delete.
(tgba_bdd_concrete::succ_iter): Take a state_bdd as argument,
not a bdd.
* src/tgba/tgbabddconcrete.cc: Likewise.
This commit is contained in:
Alexandre Duret-Lutz 2003-05-26 12:34:15 +00:00
parent c03934140f
commit 885143309a
6 changed files with 50 additions and 18 deletions

View file

@ -1,8 +1,26 @@
#ifndef SPOT_TGBA_TGBA_HH
# define SPOT_TGBA_TGBA_HH
# include "tgbabddconcrete.hh"
# include "tgbabddconcreteproduct.hh"
# include "ltl2tgba.hh"
#include "statebdd.hh"
#include "succiter.hh"
#include "tgbabdddict.hh"
namespace spot
{
class tgba
{
public:
virtual
~tgba()
{
}
virtual state_bdd get_init_state() const = 0;
virtual tgba_succ_iterator* succ_iter(state_bdd state) const = 0;
virtual const tgba_bdd_dict& get_dict() const = 0;
};
}
#endif // SPOT_TGBA_TGBA_HH