summaryrefslogtreecommitdiff
path: root/include/Exceptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Exceptions.h')
-rw-r--r--include/Exceptions.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/Exceptions.h b/include/Exceptions.h
index 489a761..9f0c3a6 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.34 2003-12-22 01:57:01 pixel Exp $ */
+/* $Id: Exceptions.h,v 1.35 2004-07-22 23:38:31 pixel Exp $ */
#ifndef __EXCEPTIONS_H__
#define __EXCEPTIONS_H__
@@ -26,6 +26,7 @@
#include <stddef.h>
#include <string.h>
#include <stdlib.h>
+#include <stdarg.h>
#include <vector>
#include <generic.h>
@@ -136,6 +137,13 @@ class Exit : public GeneralException {
int code;
};
+class printer_t : public Base {
+ public:
+ virtual bool printm(int, const char *, va_list) = 0;
+};
+
+extern printer_t * printer;
+
#include <BString.h>
#endif