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

Last change on this file since 186 was 186, checked in by cxsong, 18 years ago

moved to rappture/src/mesh

File size: 205 bytes
Line 
1#include "rp_defs.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.