Mercurial > hg > octave-lyh
diff liboctave/dbleAEPBAL.h @ 3504:5eef8a2294bd
[project @ 2000-02-01 10:06:51 by jwe]
author | jwe |
---|---|
date | Tue, 01 Feb 2000 10:07:26 +0000 |
parents | d14c483b3c12 |
children | 6e86256e9c54 |
line wrap: on
line diff
--- a/liboctave/dbleAEPBAL.h +++ b/liboctave/dbleAEPBAL.h @@ -39,7 +39,7 @@ AEPBALANCE (void) : balanced_mat (), balancing_mat () { } - AEPBALANCE (const Matrix& a,const string& balance_job) + AEPBALANCE (const Matrix& a,const std::string& balance_job) { init (a, balance_job); } @@ -63,14 +63,14 @@ Matrix balancing_matrix (void) const { return balancing_mat; } - friend ostream& operator << (ostream& os, const AEPBALANCE& a); + friend std::ostream& operator << (std::ostream& os, const AEPBALANCE& a); private: Matrix balanced_mat; Matrix balancing_mat; - int init (const Matrix& a, const string& balance_job); + int init (const Matrix& a, const std::string& balance_job); }; #endif