You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
529 B
C
30 lines
529 B
C
/**
|
|
* define INCLUDE_CB_DEFINES in order to include keyword mappings
|
|
*/
|
|
#ifndef GODOT_HUB_MAP_CB_H
|
|
#define GODOT_HUB_MAP_CB_H
|
|
|
|
#ifdef USE_CBLIB_DEFINES
|
|
|
|
#define assertm(exp, msg) = assert(((void)msg, exp))
|
|
|
|
#ifdef _MSC_VER
|
|
#define or ||
|
|
#define and &&
|
|
#define xor ^
|
|
#define compl ~
|
|
#define not !
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
#include "cb/test/test.h"
|
|
#include "cb/time/time.h"
|
|
#include "cb/types/types.h"
|
|
#include "cb/argparser/argument_parser.h"
|
|
#include "cb/string_utils/string_utils.h"
|
|
|
|
|
|
#endif //GODOT_HUB_MAP_CB_H
|