00001 #ifndef GERROR_OUTPUT_H_
00002 #define GERROR_OUTPUT_H_
00003
00004 #include <iostream>
00005 #include <string>
00006
00007 namespace GMathLib{
00008 namespace IO{
00012 namespace GError_Output{
00013
00019 inline void Puts(const std::string class_method, const std::string outputinfo){
00020 std::cerr << "== GMathLib Error Info : " << class_method << std::endl;
00021 std::cerr << " * " + outputinfo << std::endl;
00022 std::cerr << std::endl;
00023 }
00024
00025 }
00026
00027 }
00028 }
00029 #endif