diff src/pt-exp.h @ 10832:1b2fcd122c6a

allow user detect ignored outputs in m-functions
author Jaroslav Hajek <highegg@gmail.com>
date Thu, 29 Jul 2010 12:45:23 +0200
parents f3b65e1ae355
children 5677f3f7b5fa
line wrap: on
line diff
--- a/src/pt-exp.h
+++ b/src/pt-exp.h
@@ -25,6 +25,7 @@
 #define octave_tree_expr_h 1
 
 #include <string>
+#include <list>
 
 class octave_value;
 class octave_lvalue;
@@ -78,6 +79,9 @@
 
   virtual octave_value_list rvalue (int nargout);
 
+  virtual octave_value_list rvalue (int nargout,
+                                    const std::list<octave_lvalue> *lvalue_list);
+
   virtual octave_lvalue lvalue (void);
 
   int paren_count (void) const { return num_parens; }