mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-22 00:32:44 +00:00
18 lines
252 B
C++
18 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 |