source: trunk/src/mesh/util.cc @ 214

Last change on this file since 214 was 202, checked in by cxsong, 19 years ago

additions to makefile, error codes, changes to element.

File size: 202 bytes
Line 
1#include "util.h"
2
3string RpErrorStr;
4
5void RpAppendErr(const char* str)
6{
7        RpErrorStr.append(str, strlen(str));
8        //cout << RpErrorStr << endl;
9}
10
11void RpPrintErr()
12{
13    cout << RpErrorStr << endl;
14}
15
Note: See TracBrowser for help on using the repository browser.