diff liboctave/CmplxCHOL.h @ 6108:143b556ce725

[project @ 2006-10-27 01:45:54 by jwe]
author jwe
date Fri, 27 Oct 2006 01:45:56 +0000
parents 15843d76156d
children e978a9233cf6
line wrap: on
line diff
--- a/liboctave/CmplxCHOL.h
+++ b/liboctave/CmplxCHOL.h
@@ -29,6 +29,7 @@
 #include "CMatrix.h"
 
 class
+OCTAVE_API
 ComplexCHOL
 {
 public:
@@ -57,7 +58,7 @@
 
   ComplexMatrix inverse (void) const;
 
-  friend std::ostream& operator << (std::ostream& os, const ComplexCHOL& a);
+  friend OCTAVE_API std::ostream& operator << (std::ostream& os, const ComplexCHOL& a);
 
 private:
 
@@ -66,7 +67,7 @@
   octave_idx_type init (const ComplexMatrix& a);
 };
 
-ComplexMatrix chol2inv (const ComplexMatrix& r);
+ComplexMatrix OCTAVE_API chol2inv (const ComplexMatrix& r);
 
 #endif