* 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

@ -64,14 +64,14 @@ namespace spot
/// in the iteration. These actually correspond to the same
/// destination. It just means there were several transitions,
/// with different conditions, leading to the same state.
virtual state* current_state() = 0;
virtual state* current_state() const = 0;
/// \brief Get the condition on the transition leading to this successor.
///
/// This is a boolean function of atomic propositions.
virtual bdd current_condition() = 0;
virtual bdd current_condition() const = 0;
/// \brief Get the accepting conditions on the transition leading
/// to this successor.
virtual bdd current_accepting_conditions() = 0;
virtual bdd current_accepting_conditions() const = 0;
//@}
};