Mercurial > hg > aimc
diff src/CAR.h @ 477:c03e8ead1862 carfac_cpp
Skeleton draft of CARFAC classes.
author | Ulf.Hammarqvist@gmail.com |
---|---|
date | Wed, 28 Mar 2012 07:12:22 +0000 |
parents | |
children | 83e813152671 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/CAR.h Wed Mar 28 07:12:22 2012 +0000 @@ -0,0 +1,26 @@ +/* + * 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_coefficients(CAR_parameters, float, FloatArray); + virtual ~CAR_coefficients(); +}; + +#endif /* CAR_H_ */