mirror of
https://github.com/ksherlock/mpw.git
synced 2025-02-16 12:30:53 +00:00
19 lines
252 B
C++
19 lines
252 B
C++
#ifndef __MPW_INTERNAL_H__
|
|
#define __MPW_INTERNAL_H__
|
|
|
|
#include <vector>
|
|
#include <cstdio>
|
|
|
|
namespace MPW
|
|
{
|
|
|
|
template<typename... Args>
|
|
inline void Log(const char *format, Args... args)
|
|
{
|
|
if (Trace) fprintf(stderr, format, args...);
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|