Mercurial > hg > aimc
diff src/CAR.h @ 478:83e813152671 carfac_cpp
rewrote CARFAC to have pointers as members
author | Ulf.Hammarqvist@gmail.com |
---|---|
date | Wed, 28 Mar 2012 16:08:11 +0000 |
parents | c03e8ead1862 |
children | 7eba2f13aa13 |
line wrap: on
line diff
--- a/src/CAR.h Wed Mar 28 07:12:22 2012 +0000 +++ b/src/CAR.h Wed Mar 28 16:08:11 2012 +0000 @@ -18,9 +18,10 @@ class CAR_coefficients{ public: - CAR_coefficients(){} - CAR_coefficients(CAR_parameters, float, FloatArray); + CAR_coefficients(CAR_parameters*, float, FloatArray); virtual ~CAR_coefficients(); +private: + CAR_coefficients(){}; }; #endif /* CAR_H_ */