www.pudn.com > zfxcengine-0.1.0.zip > ceODSStream.cpp


// $Id: ceODSStream.cpp,v 1.2 2005/06/23 19:38:20 kimmi Exp $ 
#ifdef WIN32 
 
#include "Logging/ceODSStream.h" 
 
namespace ZFXCE { 
namespace Logging { 
 
	//////////////////////////////////////////////////////////////////////////////// 
void ceOutputDebugStringStream::write(string str) { 
	OutputDebugString(str.c_str()); 
}; 
//////////////////////////////////////////////////////////////////////////////// 
string ceOutputDebugStringStream::getInfo() { 
	return "OutputDebugString"; 
} 
//////////////////////////////////////////////////////////////////////////////// 
} 
} 
//////////////////////////////////////////////////////////////////////////////// 
 
#endif // WIN32