Mercurial > hg > octave-lyh
diff src/pt-stmt.h @ 2988:daa1ed1f5462
[project @ 1997-05-16 07:23:15 by jwe]
author | jwe |
---|---|
date | Fri, 16 May 1997 07:23:17 +0000 |
parents | 20f5cec4f11c |
children | 0689afb1d001 |
line wrap: on
line diff
--- a/src/pt-stmt.h +++ b/src/pt-stmt.h @@ -91,6 +91,12 @@ // Print result of eval for this command? bool print_flag; + + // No copying! + + tree_statement (const tree_statement&); + + tree_statement& operator = (const tree_statement&); }; // A list of statements to evaluate. @@ -125,6 +131,12 @@ // Does this list of statements make up the body of a function? bool function_body; + + // No copying! + + tree_statement_list (const tree_statement_list&); + + tree_statement_list& operator = (const tree_statement_list&); }; #endif