comparison src/Support/Common.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 491b1b1d1dc5
comparison
equal deleted inserted replaced
10:d54efba7f09b 11:bd370910aa05
24 * \author: Willem van Engen <cnbh@willem.engen.nl> 24 * \author: Willem van Engen <cnbh@willem.engen.nl>
25 * \date 2010/01/30 25 * \date 2010/01/30
26 * \version \$Id: Common.h 1 2010-02-02 11:04:50Z tcw $ 26 * \version \$Id: Common.h 1 2010-02-02 11:04:50Z tcw $
27 */ 27 */
28 28
29 #ifndef _AIMC_SUPPORT_COMMON_H_ 29 #ifndef AIMC_SUPPORT_COMMON_H_
30 #define _AIMC_SUPPORT_COMMON_H_ 30 #define AIMC_SUPPORT_COMMON_H_
31 31
32 #include <stdlib.h> 32 #include <stdlib.h>
33 #include <stdio.h> 33 #include <stdio.h>
34 #include <stdarg.h> 34 #include <stdarg.h>
35 35
97 void LOG_ERROR(const char *sFmt, ...); 97 void LOG_ERROR(const char *sFmt, ...);
98 void LOG_INFO(const char *sFmt, ...); 98 void LOG_INFO(const char *sFmt, ...);
99 void LOG_INFO_NN(const char *sFmt, ...); 99 void LOG_INFO_NN(const char *sFmt, ...);
100 } // namespace aimc 100 } // namespace aimc
101 101
102 #endif // _AIMC_SUPPORT_COMMON_H_ 102 #endif // AIMC_SUPPORT_COMMON_H_