/* * CENA C++ Utilities * * Copyright 1990, 1991, 1992 * Laboratoire de Recherche en Informatique (LRI) * Centre d'Etudes de la Navigation Aerienne (CENA) * * booleans * * $Id$ * $CurLog$ */ #ifndef _bool_h #define _bool_h 1 #if defined(TRUE) #undef TRUE #undef FALSE #endif enum bool { TRUE = 1, FALSE = 0 }; #endif /* _bool_h */