Recovered from cvs revision 2007-09-08 13:08:00

This commit is contained in:
2007-09-11 22:42:00 +00:00
parent f212242f01
commit dc2af2c9ad
5 changed files with 2269 additions and 2245 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: macros.h,v 1.5 2007/05/06 10:08:36 bacon Exp $
* $Id: macros.h,v 1.6 2007/09/07 05:40:16 bacon Exp $
*
* {License}
*/
@ -150,4 +150,12 @@
#define ASE_TOUPPER(ccls,c) (ccls)->to_upper((ccls)->custom_data,c)
#define ASE_TOLOWER(ccls,c) (ccls)->to_lower((ccls)->custom_data,c)
#ifdef __cplusplus
#define ASE_BEGIN_NAMESPACE(x) namespace x {
#define ASE_END_NAMESPACE(x) }
#define ASE_BEGIN_NAMESPACE2(x,y) namespace x { namespace y {
#define ASE_END_NAMESPACE2(y,x) }}
#endif
#endif