* 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,14 +1,14 @@
#ifndef SPOT_LTLAST_CONSTANT_HH
# define SPOT_LTLAST_CONSTANT_HH
#include "formulae.hh"
#include "formula.hh"
namespace spot
{
namespace ltl
{
class constant : public formulae
class constant : public formula
{
public:
enum type { False, True };
@ -19,8 +19,8 @@ namespace spot
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 val() const;
const char* val_name() const;