1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| #include "errmsg.h"
| #include <iostream>
|
| errMsg* errMsg::instance = NULL;
| errMsg *errMsg::getInstance()
| {
| if(instance == NULL) instance = new errMsg();
| return instance;
| }
|
| errMsg::errMsg()
| {
| }
|
| void errMsg::out(
| std::string file,
| std::string func,
| std::string msg, bool pause)
| {
| std::cout << "IN file<" << file << "> "
| << func << " : " << msg << std::endl;
| if(pause) exit(0);
| }
|
|