* src/ltlast/formulae.hh: Rename as ...

* src/ltlast/formula.hh: ... this.
* src/ltlast/Makefile.am (libltlast_a_SOURCES): Adjust.
* src/ltlast/formula.hh (formulae): Rename as ...
(formula): ... this.
Adjust all uses.
This commit is contained in:
Alexandre Duret-Lutz 2003-04-16 13:11:34 +00:00
parent 532f9131f5
commit ef2d6323e0
22 changed files with 104 additions and 97 deletions

View file

@ -6,7 +6,7 @@ namespace spot
{
namespace ltl
{
binop::binop(type op, formulae* first, formulae* second)
binop::binop(type op, formula* first, formula* second)
: op_(op), first_(first), second_(second)
{
}
@ -27,25 +27,25 @@ namespace spot
v.visit(this);
}
const formulae*
const formula*
binop::first() const
{
return first_;
}
formulae*
formula*
binop::first()
{
return first_;
}
const formulae*
const formula*
binop::second() const
{
return second_;
}
formulae*
formula*
binop::second()
{
return second_;