Mercurial > hg > aimc
view 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 source
/* * CAR.h * * Created on: 24 mar 2012 * Author: ulha */ #ifndef CAR_H_ #define CAR_H_ #include "CARFAC_common_typedefs.h" class CAR_parameters { public: CAR_parameters(); virtual ~CAR_parameters(); }; class CAR_coefficients{ public: CAR_coefficients(CAR_parameters*, float, FloatArray); virtual ~CAR_coefficients(); private: CAR_coefficients(){}; }; #endif /* CAR_H_ */