changeset 354:1a75146ef3bb

[project @ 1994-02-11 00:39:55 by jwe]
author jwe
date Fri, 11 Feb 1994 00:42:30 +0000
parents bd4696024bda
children 1752b1ef8bac
files liboctave/Array.cc liboctave/Array.h src/SLStack.cc src/SLStack.h src/Stack.h
diffstat 5 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/Array.cc	Fri Feb 11 00:03:03 1994 +0000
+++ b/liboctave/Array.cc	Fri Feb 11 00:42:30 1994 +0000
@@ -28,7 +28,7 @@
 #include <assert.h>
 
 #if defined (__GNUG__) && defined (USE_EXTERNAL_TEMPLATES)
-#pragma implementation
+#pragma implementation "Array.h"
 #endif
 
 #include "Array.h"
--- a/liboctave/Array.h	Fri Feb 11 00:03:03 1994 +0000
+++ b/liboctave/Array.h	Fri Feb 11 00:42:30 1994 +0000
@@ -24,12 +24,12 @@
 #if !defined (_Array_h)
 #define _Array_h 1
 
+#include "lo-error.h"
+
 #if defined (__GNUG__) && defined (USE_EXTERNAL_TEMPLATES)
 #pragma interface
 #endif
 
-#include "lo-error.h"
-
 // Classes we declare.
 
 template <class T> class ArrayRep;
--- a/src/SLStack.cc	Fri Feb 11 00:03:03 1994 +0000
+++ b/src/SLStack.cc	Fri Feb 11 00:42:30 1994 +0000
@@ -1,7 +1,7 @@
 // Template stack class                                  -*- C++ -*-
 /*
 
-Copyright (C) 1993 John W. Eaton
+Copyright (C) 1993, 1994 John W. Eaton
 
 This file is part of Octave.
 
@@ -26,7 +26,7 @@
 #endif
 
 #if defined (__GNUG__) && defined (USE_EXTERNAL_TEMPLATES)
-#pragma implementation
+#pragma implementation "SLStack.h"
 #endif
 
 #include "SLStack.h"
--- a/src/SLStack.h	Fri Feb 11 00:03:03 1994 +0000
+++ b/src/SLStack.h	Fri Feb 11 00:42:30 1994 +0000
@@ -19,13 +19,13 @@
 #if !defined (_SLStack_h)
 #define _SLStack_h 1
 
+#include "SLList.h"
+#include "Stack.h"
+
 #if defined (__GNUG__) && defined (USE_EXTERNAL_TEMPLATES)
 #pragma interface
 #endif
 
-#include "SLList.h"
-#include "Stack.h"
-
 template <class T>
 class SLStack : public Stack<T>
 {
--- a/src/Stack.h	Fri Feb 11 00:03:03 1994 +0000
+++ b/src/Stack.h	Fri Feb 11 00:42:30 1994 +0000
@@ -21,7 +21,7 @@
 #define _Stack_h 1
 
 #if defined (__GNUG__) && defined (USE_EXTERNAL_TEMPLATES)
-// #pragma interface
+#pragma interface
 #endif
 
 template <class T>