comparison src/Modules/Input/ModuleFileInput.h @ 11:bd370910aa05

-Added modules template -Changed header guard style to be more consistent with the Google style guide -Added Doyxfile to generate doxygen documentation -Added structure diagram -Updated swig script to reflect new modules -Changes Gaussians back to using floats and changed tolerance on tests - doubles are unnecessary here
author tomwalters
date Fri, 19 Feb 2010 12:15:56 +0000
parents fcbf85ce59fb
children c5f5e9569863
comparison
equal deleted inserted replaced
10:d54efba7f09b 11:bd370910aa05
23 * \author Thomas Walters <tom@acousticscale.org> 23 * \author Thomas Walters <tom@acousticscale.org>
24 * \date created 2006/09/21 24 * \date created 2006/09/21
25 * \version \$Id$ 25 * \version \$Id$
26 */ 26 */
27 27
28 #ifndef _AIMC_MODULES_INPUT_FILE_H_ 28 #ifndef AIMC_MODULES_INPUT_FILEINPUT_H_
29 #define _AIMC_MODULES_INPUT_FILE_H_ 29 #define AIMC_MODULES_INPUT_FILEINPUT_H_
30 30
31 #include <sndfile.h> 31 #include <sndfile.h>
32 32
33 #include "Support/Module.h" 33 #include "Support/Module.h"
34 #include "Support/Parameters.h" 34 #include "Support/Parameters.h"
82 int buffer_length_; 82 int buffer_length_;
83 float sample_rate_; 83 float sample_rate_;
84 }; 84 };
85 } // namespace aimc 85 } // namespace aimc
86 86
87 #endif // _AIMC_MODULES_INPUT_FILE_H_ 87 #endif // AIMC_MODULES_INPUT_FILEINPUT_H_