Mercurial > hg > aimc
annotate src/AGC.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 * AGC.h |
Ulf@477 | 3 * |
Ulf@477 | 4 * Created on: 25 mar 2012 |
Ulf@477 | 5 * Author: ulha |
Ulf@477 | 6 */ |
Ulf@477 | 7 |
Ulf@477 | 8 #ifndef AGC_H_ |
Ulf@477 | 9 #define AGC_H_ |
Ulf@477 | 10 |
Ulf@477 | 11 class AGC_parameters { |
Ulf@477 | 12 public: |
Ulf@477 | 13 AGC_parameters(); |
Ulf@477 | 14 virtual ~AGC_parameters(); |
Ulf@477 | 15 }; |
Ulf@477 | 16 |
Ulf@477 | 17 class AGC_coefficients { |
Ulf@477 | 18 public: |
Ulf@477 | 19 AGC_coefficients(); |
Ulf@477 | 20 virtual ~AGC_coefficients(); |
Ulf@477 | 21 }; |
Ulf@477 | 22 |
Ulf@477 | 23 #endif /* AGC_H_ */ |