Mercurial > hg > octave-nkf
comparison liboctave/MArray.h @ 382:e02d6b664394
[project @ 1994-03-09 21:08:03 by jwe]
author | jwe |
---|---|
date | Wed, 09 Mar 1994 21:08:03 +0000 |
parents | 5a9e23307fb0 |
children | 18933dbd5e43 |
comparison
equal
deleted
inserted
replaced
381:3dc943e34d9a | 382:e02d6b664394 |
---|---|
1 // Template array classes with like-type math ops -*- C++ -*- | 1 // Template array classes with like-type math ops -*- C++ -*- |
2 /* | 2 /* |
3 | 3 |
4 Copyright (C) 1993 John W. Eaton | 4 Copyright (C) 1993, 1994 John W. Eaton |
5 | 5 |
6 This file is part of Octave. | 6 This file is part of Octave. |
7 | 7 |
8 Octave is free software; you can redistribute it and/or modify it | 8 Octave is free software; you can redistribute it and/or modify it |
9 under the terms of the GNU General Public License as published by the | 9 under the terms of the GNU General Public License as published by the |
19 along with Octave; see the file COPYING. If not, write to the Free | 19 along with Octave; see the file COPYING. If not, write to the Free |
20 Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | 20 Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
21 | 21 |
22 */ | 22 */ |
23 | 23 |
24 #if !defined (_MArray_h) | 24 #if !defined (octave_MArray_h) |
25 #define _MArray_h 1 | 25 #define octave_MArray_h 1 |
26 | |
27 extern "C++" { | |
26 | 28 |
27 #include "Array.h" | 29 #include "Array.h" |
28 | 30 |
29 // Classes we declare. | 31 // Classes we declare. |
30 | 32 |
201 | 203 |
202 #ifdef __GNUG__ | 204 #ifdef __GNUG__ |
203 #include "MArray.cc" | 205 #include "MArray.cc" |
204 #endif | 206 #endif |
205 | 207 |
208 } // extern "C++" | |
209 | |
206 #endif | 210 #endif |
207 | 211 |
208 /* | 212 /* |
209 ;;; Local Variables: *** | 213 ;;; Local Variables: *** |
210 ;;; mode: C++ *** | 214 ;;; mode: C++ *** |