* src/SpotWrapper.cc (SpotWrapper::SPOT_AND, SpotWrapper::SPOT_OR):

Define as && and || as in Spin.
* src/SpotWrapper.hh: Update by email.
This commit is contained in:
Alexandre Duret-Lutz 2004-02-11 15:20:45 +00:00
parent 53a0cc7a54
commit 2b7c9ea395
3 changed files with 12 additions and 6 deletions

View file

@ -1,3 +1,9 @@
2004-02-11 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/SpotWrapper.cc (SpotWrapper::SPOT_AND, SpotWrapper::SPOT_OR):
Define as && and || as in Spin.
* src/SpotWrapper.hh: Update by email.
2004-01-16 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/TestOperations.cc: Include sys/wait.h.

View file

@ -1,8 +1,8 @@
/*
* Copyright (C) 2003
* Copyright (C) 2003, 2004
* Heikki Tauriainen <Heikki.Tauriainen@hut.fi>
*
* Derived from SpinWrapper.cc by Alexandre Duret-Lutz <aduret@src.lip6.fr>.
* Derived from SpinWrapper.cc by Alexandre Duret-Lutz <adl@src.lip6.fr>.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -40,8 +40,8 @@
*
*****************************************************************************/
const char SpotWrapper::SPOT_AND[] = "&";
const char SpotWrapper::SPOT_OR[] = "|";
const char SpotWrapper::SPOT_AND[] = "&&";
const char SpotWrapper::SPOT_OR[] = "||";
const char SpotWrapper::SPOT_XOR[] = "^";

View file

@ -1,8 +1,8 @@
/*
* Copyright (C) 2003
* Copyright (C) 2003, 2004
* Heikki Tauriainen <Heikki.Tauriainen@hut.fi>
*
* Derived from SpinWrapper.h by Alexandre Duret-Lutz <aduret@src.lip6.fr>.
* Derived from SpinWrapper.h by Alexandre Duret-Lutz <adl@src.lip6.fr>.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License