Mercurial > hg > aimc
annotate 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 |
rev | line source |
---|---|
Ulf@477 | 1 /* |
Ulf@477 | 2 * CAR.h |
Ulf@477 | 3 * |
Ulf@477 | 4 * Created on: 24 mar 2012 |
Ulf@477 | 5 * Author: ulha |
Ulf@477 | 6 */ |
Ulf@477 | 7 |
Ulf@477 | 8 #ifndef CAR_H_ |
Ulf@477 | 9 #define CAR_H_ |
Ulf@477 | 10 |
Ulf@477 | 11 #include "CARFAC_common_typedefs.h" |
Ulf@477 | 12 |
Ulf@477 | 13 class CAR_parameters { |
Ulf@477 | 14 public: |
Ulf@477 | 15 CAR_parameters(); |
Ulf@477 | 16 virtual ~CAR_parameters(); |
Ulf@477 | 17 }; |
Ulf@477 | 18 |
Ulf@477 | 19 class CAR_coefficients{ |
Ulf@477 | 20 public: |
Ulf@477 | 21 CAR_coefficients(){} |
Ulf@477 | 22 CAR_coefficients(CAR_parameters, float, FloatArray); |
Ulf@477 | 23 virtual ~CAR_coefficients(); |
Ulf@477 | 24 }; |
Ulf@477 | 25 |
Ulf@477 | 26 #endif /* CAR_H_ */ |