/* */ #ifndef D_CONSOLE_H #define D_CONSOLE_H #include "common.h" #include "SharedHandle.h" #include "OutputFile.h" namespace aria2 { typedef SharedHandle Console; namespace global { // Initialize console output facility. If the |suppress| is true, all // output sent to the console objects are discarded. void initConsole(bool suppress); const Console& cout(); const Console& cerr(); } // namespace global } // namespace aria2 #endif // D_CONSOLE_H