00001 00014 #ifndef __COMMON_H__ 00015 #define __COMMON_H__ 00016 00017 #include <iostream> /* standard streams */ 00018 #include <string> /* std::string */ 00019 00020 #include "exceptions.h" /* our exceptions */ 00021 #include "debug.h" /* debugging info */ 00022 00023 // I/O 00024 using std::cout; 00025 using std::cerr; 00026 using std::endl; 00027 00028 // String 00029 using std::string; 00030 00031 #endif /* __COMMON_H__ */ 00032 00033 /* End of file common.h */