comparison liboctave/SparseCmplxQR.h @ 12125:a21a3875ca83

implement a common class for reference counts
author Jaroslav Hajek <highegg@gmail.com>
date Thu, 20 Jan 2011 11:10:27 +0100
parents f4689107dd8c
children 43cc49c7abd1
comparison
equal deleted inserted replaced
12124:cd82f5933c73 12125:a21a3875ca83
63 63
64 ComplexMatrix C (const ComplexMatrix &b) const; 64 ComplexMatrix C (const ComplexMatrix &b) const;
65 65
66 ComplexMatrix Q (void) const; 66 ComplexMatrix Q (void) const;
67 67
68 int count; 68 octave_refcount<int> count;
69 69
70 octave_idx_type nrows; 70 octave_idx_type nrows;
71 #ifdef HAVE_CXSPARSE 71 #ifdef HAVE_CXSPARSE
72 CXSPARSE_ZNAME (s) *S; 72 CXSPARSE_ZNAME (s) *S;
73 73