/* -*- C++ -*- */ /************************************************************************* * Copyright(c) 1995~2005 Masaharu Goto (root-cint@cern.ch) * * For the licensing terms see the file COPYING * ************************************************************************/ /***************************************************************************** * Common.h *****************************************************************************/ #ifndef COMMON_H #define COMMON_H #ifndef bool typedef char bool; #endif // enum BOOLVALUE { FALSE , TRUE }; const bool FALSE=0; const bool TRUE=1; #endif