diff src/gripes.h @ 2374:67a18ae969d4

[project @ 1996-10-12 00:27:01 by jwe]
author jwe
date Sat, 12 Oct 1996 00:29:28 +0000
parents bfb775fb6fe8
children 1573640a9994
line wrap: on
line diff
--- a/src/gripes.h	Sat Oct 12 00:22:22 1996 +0000
+++ b/src/gripes.h	Sat Oct 12 00:29:28 1996 +0000
@@ -23,6 +23,8 @@
 #if !defined (octave_gripes_h)
 #define octave_gripes_h 1
 
+#include <string>
+
 class octave_value;
 
 extern void gripe_not_supported (void);
@@ -34,7 +36,7 @@
 extern void gripe_square_matrix_required (const char *name);
 extern void gripe_user_supplied_eval (const char *name);
 extern void gripe_user_returned_invalid (const char *name);
-extern void gripe_invalid_conversion (const char *from, const char *to);
+extern void gripe_invalid_conversion (const string& from, const string& to);
 extern void gripe_invalid_value_specified (const char *name);
 extern void gripe_2_or_3_dim_plot (void);
 extern void gripe_unrecognized_float_fmt (void);
@@ -43,6 +45,8 @@
 extern void gripe_wrong_type_arg (const char *name, const octave_value& tc);
 extern void gripe_wrong_type_arg_for_unary_op (const octave_value& op);
 extern void gripe_wrong_type_arg_for_binary_op (const octave_value& op);
+extern void gripe_implicit_conversion (const char *from, const char *to);
+extern void gripe_divide_by_zero (void);
 
 #endif