Work on basic logging framework.

This commit is contained in:
David Williams
2009-04-06 21:16:40 +00:00
parent 1b76395856
commit 97b162ee20
6 changed files with 70 additions and 13 deletions

View File

@ -1,3 +1,6 @@
#include "Log.h"
void (*logImpl)(std::string) = 0;
namespace PolyVox
{
void (*logHandler)(std::string, int severity) = 0;
}