#ifndef __MPW_INTERNAL_H__ #define __MPW_INTERNAL_H__ #include #include namespace MPW { template inline void Log(const char *format, Args... args) { if (Trace) fprintf(stderr, format, args...); } } #endif