changeset 1297:12ecc2ecf0e3

[project @ 1995-05-01 18:39:43 by jwe]
author jwe
date Mon, 01 May 1995 18:39:43 +0000
parents f93b7fa5e113
children c6f21b933f95
files liboctave/idx-vector.cc liboctave/idx-vector.h src/oct-map.cc src/oct-map.h src/oct-obj.cc src/oct-obj.h src/procstream.cc src/procstream.h src/pt-base.cc src/pt-base.h src/pt-cmd.cc src/pt-cmd.h src/pt-exp-base.cc src/pt-exp-base.h src/pt-misc.cc src/pt-misc.h src/pt-plot.cc src/pt-plot.h src/symtab.cc src/symtab.h src/token.cc src/token.h src/unwind-prot.cc src/unwind-prot.h
diffstat 24 files changed, 96 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/idx-vector.cc
+++ b/liboctave/idx-vector.cc
@@ -21,6 +21,10 @@
 
 */
 
+#if defined (__GNUG__)
+#pragma implementation
+#endif
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
--- a/liboctave/idx-vector.h
+++ b/liboctave/idx-vector.h
@@ -24,6 +24,10 @@
 #if !defined (octave_idx_vector_h)
 #define octave_idx_vector_h 1
 
+#if defined (__GNUG__)
+#pragma interface
+#endif
+
 class ostream;
 class Matrix;
 class Range;
--- a/src/oct-map.cc
+++ b/src/oct-map.cc
@@ -21,6 +21,10 @@
 
 */
 
+#if defined (__GNUG__)
+#pragma implementation
+#endif
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
--- a/src/oct-map.h
+++ b/src/oct-map.h
@@ -24,6 +24,10 @@
 #if !defined (octave_oct_map_h)
 #define octave_oct_map_h 1
 
+#if defined (__GNUG__)
+#pragma interface
+#endif
+
 #include "Map.h"
 
 #include "tree-const.h"
--- a/src/oct-obj.cc
+++ b/src/oct-obj.cc
@@ -21,6 +21,10 @@
 
 */
 
+#if defined (__GNUG__)
+#pragma implementation
+#endif
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
--- a/src/oct-obj.h
+++ b/src/oct-obj.h
@@ -24,6 +24,10 @@
 #if !defined (octave_oct_obj_h)
 #define octave_oct_obj_h 1
 
+#if defined (__GNUG__)
+#pragma interface
+#endif
+
 #include "Array.h"
 #include "mx-base.h"
 
--- a/src/procstream.cc
+++ b/src/procstream.cc
@@ -21,6 +21,10 @@
 
 */
 
+#if defined (__GNUG__)
+#pragma implementation
+#endif
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
--- a/src/procstream.h
+++ b/src/procstream.h
@@ -24,6 +24,10 @@
 #if !defined (octave_procstream_h)
 #define octave_procstream_h 1
 
+#if defined (__GNUG__)
+#pragma interface
+#endif
+
 #include <iostream.h>
 #include <procbuf.h>
 
--- a/src/pt-base.cc
+++ b/src/pt-base.cc
@@ -21,6 +21,10 @@
 
 */
 
+#if defined (__GNUG__)
+#pragma implementation
+#endif
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
--- a/src/pt-base.h
+++ b/src/pt-base.h
@@ -24,6 +24,10 @@
 #if !defined (octave_tree_base_h)
 #define octave_tree_base_h 1
 
+#if defined (__GNUG__)
+#pragma interface
+#endif
+
 class ostream;
 
 // How to print the code that the trees represent.
--- a/src/pt-cmd.cc
+++ b/src/pt-cmd.cc
@@ -21,6 +21,10 @@
 
 */
 
+#if defined (__GNUG__)
+#pragma implementation
+#endif
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
--- a/src/pt-cmd.h
+++ b/src/pt-cmd.h
@@ -24,6 +24,10 @@
 #if !defined (octave_tree_cmd_h)
 #define octave_tree_cmd_h 1
 
+#if defined (__GNUG__)
+#pragma interface
+#endif
+
 #include <iostream.h>
 
 class Octave_object;
--- a/src/pt-exp-base.cc
+++ b/src/pt-exp-base.cc
@@ -21,6 +21,10 @@
 
 */
 
+#if defined (__GNUG__)
+#pragma implementation
+#endif
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
--- a/src/pt-exp-base.h
+++ b/src/pt-exp-base.h
@@ -24,6 +24,10 @@
 #if !defined (octave_tree_expr_h)
 #define octave_tree_expr_h 1
 
+#if defined (__GNUG__)
+#pragma interface
+#endif
+
 #include <time.h>
 #include <stdio.h>
 #include <iostream.h>
--- a/src/pt-misc.cc
+++ b/src/pt-misc.cc
@@ -21,6 +21,10 @@
 
 */
 
+#if defined (__GNUG__)
+#pragma implementation
+#endif
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
--- a/src/pt-misc.h
+++ b/src/pt-misc.h
@@ -24,6 +24,10 @@
 #if !defined (octave_tree_misc_h)
 #define octave_tree_misc_h 1
 
+#if defined (__GNUG__)
+#pragma interface
+#endif
+
 class ostream;
 class Octave_object;
 class tree_constant;
--- a/src/pt-plot.cc
+++ b/src/pt-plot.cc
@@ -21,6 +21,10 @@
 
 */
 
+#if defined (__GNUG__)
+#pragma implementation
+#endif
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
--- a/src/pt-plot.h
+++ b/src/pt-plot.h
@@ -24,6 +24,10 @@
 #if !defined (octave_tree_plot_h)
 #define octave_tree_plot_h 1
 
+#if defined (__GNUG__)
+#pragma interface
+#endif
+
 #include <iostream.h>
 
 class tree_command;
--- a/src/symtab.cc
+++ b/src/symtab.cc
@@ -21,6 +21,10 @@
 
 */
 
+#if defined (__GNUG__)
+#pragma implementation
+#endif
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
--- a/src/symtab.h
+++ b/src/symtab.h
@@ -24,6 +24,10 @@
 #if !defined (octave_symtab_h)
 #define octave_symtab_h 1
 
+#if defined (__GNUG__)
+#pragma interface
+#endif
+
 #include "SLStack.h"
 
 #include "variables.h"
--- a/src/token.cc
+++ b/src/token.cc
@@ -21,6 +21,10 @@
 
 */
 
+#if defined (__GNUG__)
+#pragma implementation
+#endif
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
--- a/src/token.h
+++ b/src/token.h
@@ -24,6 +24,10 @@
 #if !defined (octave_token_h)
 #define octave_token_h 1
 
+#if defined (__GNUG__)
+#pragma interface
+#endif
+
 class symbol_record;
 
 class
--- a/src/unwind-prot.cc
+++ b/src/unwind-prot.cc
@@ -21,6 +21,10 @@
 
 */
 
+#if defined (__GNUG__)
+#pragma implementation
+#endif
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
--- a/src/unwind-prot.h
+++ b/src/unwind-prot.h
@@ -24,6 +24,10 @@
 #if !defined (octave_unwind_prot_h)
 #define octave_unwind_prot_h 1
 
+#if defined (__GNUG__)
+#pragma interface
+#endif
+
 #include <stddef.h>
 
 typedef void (*cleanup_func)(void *ptr);