* 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

@ -1,33 +1,33 @@
#ifndef SPOT_LTLAST_UNOP_HH
# define SPOT_LTLAST_UNOP_HH
#include "formulae.hh"
#include "formula.hh"
namespace spot
{
namespace ltl
{
class unop : public formulae
class unop : public formula
{
public:
enum type { Not, X, F, G };
unop(type op, formulae* child);
unop(type op, formula* child);
virtual ~unop();
virtual void accept(visitor& v);
virtual void accept(const_visitor& v) const;
const formulae* child() const;
formulae* child();
const formula* child() const;
formula* child();
type op() const;
const char* op_name() const;
private:
type op_;
formulae* child_;
formula* child_;
};
}