Mercurial > hg > octave-nkf
comparison liboctave/DAEFunc.h @ 382:e02d6b664394
[project @ 1994-03-09 21:08:03 by jwe]
author | jwe |
---|---|
date | Wed, 09 Mar 1994 21:08:03 +0000 |
parents | 780cbbc57b7c |
children | 7e870a4ec9bc |
comparison
equal
deleted
inserted
replaced
381:3dc943e34d9a | 382:e02d6b664394 |
---|---|
1 // DAEFunc.h -*- C++ -*- | 1 // DAEFunc.h -*- C++ -*- |
2 /* | 2 /* |
3 | 3 |
4 Copyright (C) 1992, 1993 John W. Eaton | 4 Copyright (C) 1992, 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 (_DAEFunc_h) | 24 #if !defined (octave_DAEFunc_h) |
25 #define _DAEFunc_h 1 | 25 #define octave_DAEFunc_h 1 |
26 | |
27 extern "C++" { | |
26 | 28 |
27 #include "Matrix.h" | 29 #include "Matrix.h" |
28 | 30 |
29 #ifndef Vector | 31 #ifndef Vector |
30 #define Vector ColumnVector | 32 #define Vector ColumnVector |
69 DAERHSFunc fun; | 71 DAERHSFunc fun; |
70 | 72 |
71 DAEJacFunc jac; | 73 DAEJacFunc jac; |
72 }; | 74 }; |
73 | 75 |
76 } // extern "C++" | |
77 | |
74 #endif | 78 #endif |
79 | |
80 /* | |
81 ;;; Local Variables: *** | |
82 ;;; mode: C++ *** | |
83 ;;; page-delimiter: "^/\\*" *** | |
84 ;;; End: *** | |
85 */ |