www.pudn.com > zfxcengine-0.1.0.zip > ceCoreTools.cpp
// $Id: ceCoreTools.cpp,v 1.7 2005/09/12 08:10:18 andreaskohn Exp $ ///////////////////////////////////////////////////////////////// // Module: Core // File: ceCoreTools.cpp // Created: 06.05.2004 // Author: Kim Kulling aka Kimmi // ///////////////////////////////////////////////////////////////// #include#include #include "Core/ceCoreTools.h" #include "Core/ceExceptions.h" #include "Core/ceMemManager.h" namespace ZFXCE { //////////////////////////////////////////////////////////////////////////////// using namespace std; //////////////////////////////////////////////////////////////////////////////// void PrintFunction(const char *s) { string strError = s; strError += " nicht implementiert"; ce_check (false, strError) //CE_EXCEPTION(strError, CELS_WARNING); } //////////////////////////////////////////////////////////////////////////////// void WriteLog(string strText) { strText = strText + "\n"; cerr << strText << endl; } //////////////////////////////////////////////////////////////////////////////// } // Namespace ZFXCE