1 2 3 4 5 6 7 8
#ifndef _VERBOSE_H_ #define _VERBOSE_H_ extern bool SILENT; inline void SetSilent(bool s) { SILENT = s; } #endif