Mercurial > hg > aimc
annotate branches/carfac_cpp/include/Ear.h @ 575:f56d2eedd878
- Remove oscpack support until it works everywhere.
author | tom@acousticscale.org |
---|---|
date | Tue, 10 Jul 2012 07:39:24 +0000 |
parents | 9c4c3675c3f8 |
children | f3dde307f4b8 |
rev | line source |
---|---|
Ulf@564 | 1 /* |
Ulf@564 | 2 * Ear.h |
Ulf@564 | 3 * |
Ulf@564 | 4 * Created on: 16 maj 2012 |
Ulf@564 | 5 * Author: ulha |
Ulf@564 | 6 */ |
Ulf@564 | 7 |
Ulf@564 | 8 #ifndef EAR_H_ |
Ulf@564 | 9 #define EAR_H_ |
Ulf@564 | 10 |
Ulf@564 | 11 #include "CAR.h" |
Ulf@564 | 12 #include "IHC.h" |
Ulf@564 | 13 #include "AGC.h" |
Ulf@564 | 14 |
Ulf@564 | 15 class Ear { |
Ulf@564 | 16 public: |
Ulf@564 | 17 Ear(CAR_parameters*, IHC_parameters*, AGC_parameters*, FloatArray, int, float); |
Ulf@564 | 18 |
Ulf@564 | 19 CAR_parameters car_params_; |
Ulf@564 | 20 IHC_parameters ihc_params_; |
Ulf@564 | 21 AGC_parameters agc_params_; |
Ulf@564 | 22 |
Ulf@564 | 23 CAR_coefficients* car_coeffs_p_; |
Ulf@564 | 24 IHC_coefficients* ihc_coeffs_p_; |
Ulf@564 | 25 AGC_coefficients* agc_coeffs_p_; |
Ulf@564 | 26 |
Ulf@564 | 27 virtual |
Ulf@564 | 28 ~Ear(); |
Ulf@564 | 29 |
Ulf@564 | 30 private: |
Ulf@564 | 31 Ear(); |
Ulf@564 | 32 |
Ulf@564 | 33 }; |
Ulf@564 | 34 |
Ulf@564 | 35 #endif /* EAR_H_ */ |