OMToolkit  1.0
The polygonal mesh processing tool.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
OMErrorLog.h
Go to the documentation of this file.
1 //==============================================================================
14 #ifndef _OM_ERROR_LOG_H_
15 #define _OM_ERROR_LOG_H_
16 
17 #include <string>
18 #include <iostream>
19 
20 namespace OMToolkit
21 {
25  class ErrorLog
26  {
27  public:
33  static void ShowLog(std::string message)
34  {
35 //#ifdef _DEBUG
36  std::cerr << message << std::endl;
37 //#endif
38  }
39  }; // class
40 }
41 
42 #endif