comparison src/Support/StrobeList.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 3078854c634a
children b4cafba48e9d
comparison
equal deleted inserted replaced
10:d54efba7f09b 11:bd370910aa05
23 * \author Tom Walters <tom@acousticscale.org> 23 * \author Tom Walters <tom@acousticscale.org>
24 * \date created 2007/08/22 24 * \date created 2007/08/22
25 * \version \$Id: StrobeList.h 1 2010-02-02 11:04:50Z tcw $ 25 * \version \$Id: StrobeList.h 1 2010-02-02 11:04:50Z tcw $
26 */ 26 */
27 27
28 #ifndef _AIMC_SUPPORT_STROBE_LIST_H_ 28 #ifndef AIMC_SUPPORT_STROBELIST_H_
29 #define _AIMC_SUPPORT_STROBE_LIST_H_ 29 #define AIMC_SUPPORT_STROBELIST_H_
30 30
31 #include <math.h> 31 #include <math.h>
32 #include <deque> 32 #include <deque>
33 33
34 namespace aimc { 34 namespace aimc {
105 private: 105 private:
106 deque<StrobePoint> strobes_; 106 deque<StrobePoint> strobes_;
107 }; 107 };
108 } // namespace aimc 108 } // namespace aimc
109 109
110 #endif /* _AIMC_STROBE_LIST_H_ */ 110 #endif /* AIMC_SUPPORT_STROBELIST_H_ */
111 111