comparison liboctave/NPSOL.h @ 382:e02d6b664394

[project @ 1994-03-09 21:08:03 by jwe]
author jwe
date Wed, 09 Mar 1994 21:08:03 +0000
parents 3c23b8ea9099
children 7e870a4ec9bc
comparison
equal deleted inserted replaced
381:3dc943e34d9a 382:e02d6b664394
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 (_NPSOL_h) 24 #if !defined (octave_NPSOL_h)
25 #define _NPSOL_h 1 25 #define octave_NPSOL_h 1
26
27 extern "C++" {
26 28
27 #ifndef NPSOL_MISSING 29 #ifndef NPSOL_MISSING
28 30
29 #include "Matrix.h" 31 #include "Matrix.h"
30 #include "NLP.h" 32 #include "NLP.h"
186 inline NPSOL::NPSOL (const NPSOL& a) : NLP (a.x, a.phi, a.bnds, a.lc, a.nlc) 188 inline NPSOL::NPSOL (const NPSOL& a) : NLP (a.x, a.phi, a.bnds, a.lc, a.nlc)
187 { } 189 { }
188 190
189 #endif /* NPSOL_MISSING */ 191 #endif /* NPSOL_MISSING */
190 192
193 } // extern "C++"
194
191 #endif 195 #endif
192 196
193 /* 197 /*
194 ;;; Local Variables: *** 198 ;;; Local Variables: ***
195 ;;; mode: C++ *** 199 ;;; mode: C++ ***