annotate 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
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@478 21 CAR_coefficients(CAR_parameters*, float, FloatArray);
Ulf@477 22 virtual ~CAR_coefficients();
Ulf@478 23 private:
Ulf@478 24 CAR_coefficients(){};
Ulf@477 25 };
Ulf@477 26
Ulf@477 27 #endif /* CAR_H_ */