comparison src/Support/SignalBank.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 3c782dec2fc0
children 491b1b1d1dc5
comparison
equal deleted inserted replaced
10:d54efba7f09b 11:bd370910aa05
30 /*! \author: Thomas Walters <tom@acousticscale.org> 30 /*! \author: Thomas Walters <tom@acousticscale.org>
31 * \date 2010/01/23 31 * \date 2010/01/23
32 * \version \$Id: SignalBank.h 4 2010-02-03 18:44:58Z tcw $ 32 * \version \$Id: SignalBank.h 4 2010-02-03 18:44:58Z tcw $
33 */ 33 */
34 34
35 #ifndef _AIMC_SUPPORT_SIGNALBANK_H_ 35 #ifndef AIMC_SUPPORT_SIGNALBANK_H_
36 #define _AIMC_SUPPORT_SIGNALBANK_H_ 36 #define AIMC_SUPPORT_SIGNALBANK_H_
37 37
38 #include <deque> 38 #include <deque>
39 #include <vector> 39 #include <vector>
40 40
41 #include "Support/Common.h" 41 #include "Support/Common.h"
84 bool initialized_; 84 bool initialized_;
85 DISALLOW_COPY_AND_ASSIGN(SignalBank); 85 DISALLOW_COPY_AND_ASSIGN(SignalBank);
86 }; 86 };
87 } 87 }
88 88
89 #endif // _AIMC_SUPPORT_SIGNALBANK_H_ 89 #endif // AIMC_SUPPORT_SIGNALBANK_H_