comparison liboctave/dbleQR.h @ 1296:f93b7fa5e113

[project @ 1995-05-01 18:30:08 by jwe]
author jwe
date Mon, 01 May 1995 18:30:08 +0000
parents 18933dbd5e43
children 611d403c7f3d
comparison
equal deleted inserted replaced
1295:34295bf6aac6 1296:f93b7fa5e113
22 */ 22 */
23 23
24 #if !defined (octave_QR_h) 24 #if !defined (octave_QR_h)
25 #define octave_QR_h 1 25 #define octave_QR_h 1
26 26
27 #if defined (__GNUG__)
28 #pragma interface
29 #endif
30
27 class ostream; 31 class ostream;
28 32
29 #include "dMatrix.h" 33 #include "dMatrix.h"
30
31 extern "C++" {
32 34
33 class QR 35 class QR
34 { 36 {
35 public: 37 public:
36 38
81 inline Matrix QR::R (void) const 83 inline Matrix QR::R (void) const
82 { 84 {
83 return r; 85 return r;
84 } 86 }
85 87
86 } // extern "C++"
87
88 #endif 88 #endif
89 89
90 /* 90 /*
91 ;;; Local Variables: *** 91 ;;; Local Variables: ***
92 ;;; mode: C++ *** 92 ;;; mode: C++ ***