diff options
author | pixel <pixel> | 2007-08-07 09:50:46 +0000 |
---|---|---|
committer | pixel <pixel> | 2007-08-07 09:50:46 +0000 |
commit | 75ef5ef4fda55ba36d90ff5c0834f0c5d6b3ccf9 (patch) | |
tree | 14dc39e2e6762c88c6d279a6f742e2e2bf3c2217 /include | |
parent | 5621123d7c16be8800e37f3abd6d28151fc386ae (diff) |
Adding the printr function.
Diffstat (limited to 'include')
-rw-r--r-- | include/Exceptions.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/Exceptions.h b/include/Exceptions.h index 9aac968..addf78e 100644 --- a/include/Exceptions.h +++ b/include/Exceptions.h @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: Exceptions.h,v 1.44 2007-05-30 11:57:08 pixel Exp $ */ +/* $Id: Exceptions.h,v 1.45 2007-08-07 09:50:46 pixel Exp $ */ #ifndef __EXCEPTIONS_H__ #define __EXCEPTIONS_H__ @@ -73,6 +73,8 @@ class Base { static void exit(int); static void printm(int level, const ugly_string &, ...); static void printm(int level, const char *, ...); + static void printr(int level, const ugly_string &); + static void printr(int level, const char *); static void exception(const String &); static void pushcontext(const String &); static void popcontext(void); |