Mercurial > hg > aimc
view branches/carfac_cpp/src/CARFAC.h @ 538:81b01c88a257
Skeleton draft of CARFAC classes.
author | Ulf.Hammarqvist@gmail.com |
---|---|
date | Wed, 28 Mar 2012 07:12:22 +0000 |
parents | |
children | 750075ee8e3a |
line wrap: on
line source
/* * CARFAC.h * * Created on: 24 mar 2012 * Author: ulha */ #ifndef CARFAC_H_ #define CARFAC_H_ #include "CAR.h" #include "IHC.h" #include "AGC.h" class CARFAC { public: CARFAC(int, CAR_parameters, IHC_parameters, AGC_parameters, float, float); virtual ~CARFAC(); CAR_coefficients CAR_coeffs; CAR_parameters CAR_params; IHC_coefficients IHC_coeffs; IHC_parameters IHC_params; AGC_coefficients AGC_coeffs; AGC_parameters AGC_params; }; #endif /* CARFAC_H_ */