* src/tgba/succiter.hh (current_state, current_conditions

current_accepting_conditions): Mark as const.
* src/tgba/succiterconcrete.cc, src/tgba/succiterconcrete.hh,
src/tgba/tgbaexplicit.cc, src/tgba/tgbaexplicit.hh,
src/tgba/tgbaproduct.cc, src/tgba/tgbaproduct.hh,
src/tgba/tgbatranslateproxy.cc, src/tgba/tgbatranslateproxy.hh:
Likewise.
This commit is contained in:
Alexandre Duret-Lutz 2003-07-07 13:43:53 +00:00
parent aaeb297aed
commit c96af6251a
10 changed files with 35 additions and 27 deletions

View file

@ -30,9 +30,9 @@ namespace spot
bool done() const;
// inspection
state_bdd* current_state();
bdd current_condition();
bdd current_accepting_conditions();
state_bdd* current_state() const;
bdd current_condition() const;
bdd current_accepting_conditions() const;
private:
const tgba_bdd_core_data& data_; ///< Core data of the automaton.