diff src/pt-exp.h @ 2988:daa1ed1f5462

[project @ 1997-05-16 07:23:15 by jwe]
author jwe
date Fri, 16 May 1997 07:23:17 +0000
parents cd5ad3fd8049
children b80bbb43a1a9
line wrap: on
line diff
--- a/src/pt-exp.h	Fri May 16 07:05:49 1997 +0000
+++ b/src/pt-exp.h	Fri May 16 07:23:17 1997 +0000
@@ -32,7 +32,7 @@
 class octave_value;
 class octave_lvalue;
 
-#include "pt-base.h"
+#include "pt.h"
 
 // A base class for expressions.
 
@@ -133,6 +133,14 @@
 
   // Print result of rvalue for this expression?
   bool print_flag;
+
+private:
+
+  // No copying!
+
+  tree_expression (const tree_expression&);
+
+  tree_expression& operator = (const tree_expression&);
 };
 
 #endif