Mercurial > hg > octave-nkf
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 +++ b/liboctave/Array.cc @@ -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 +++ b/liboctave/Array.h @@ -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 +++ b/src/SLStack.cc @@ -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 +++ b/src/SLStack.h @@ -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> {