Ulf@477: #ifndef IHC_H_ Ulf@477: #define IHC_H_ Ulf@477: Ulf@479: // not sure how to best deal with the "three style" IHC - ulha Ulf@477: class IHC_parameters { Ulf@477: public: Ulf@477: IHC_parameters(); Ulf@477: virtual ~IHC_parameters(); Ulf@479: Ulf@479: float tau_lpf; Ulf@479: float tau1_out; Ulf@479: float tau1_in; Ulf@479: float tau2_out; Ulf@479: float tau2_in; Ulf@477: }; Ulf@477: Ulf@477: class IHC_coefficients { Ulf@477: public: Ulf@477: IHC_coefficients(); Ulf@477: virtual ~IHC_coefficients(); Ulf@477: }; Ulf@477: Ulf@477: #endif /* IHC_H_ */