* src/graph/graph.hh (transitions): New method.

This commit is contained in:
Alexandre Duret-Lutz 2014-08-10 15:17:14 +02:00
parent 7b23691629
commit 6ecd71c485

View file

@ -588,6 +588,16 @@ namespace spot
return states_;
}
const trans_vector& transitions() const
{
return transitions_;
}
trans_vector& transitions()
{
return transitions_;
}
void defrag()
{
if (killed_trans_ == 0) // Nothing to do.