mpw/mpw/mpw_internal.h

19 lines
252 B
C
Raw Normal View History

2013-02-16 20:37:37 +00:00
#ifndef __MPW_INTERNAL_H__
#define __MPW_INTERNAL_H__
#include <vector>
2013-02-16 23:32:37 +00:00
#include <cstdio>
2013-02-16 20:37:37 +00:00
namespace MPW
{
2013-02-16 23:32:37 +00:00
template<typename... Args>
inline void Log(const char *format, Args... args)
{
if (Trace) fprintf(stderr, format, args...);
}
2013-02-16 20:37:37 +00:00
}
#endif