File config.h¶
Go to the documentation of this file
#ifndef EXAMPLE_CONFIG_H
#define EXAMPLE_CONFIG_H
#define CONFIG_HELLO (123)
#define CONFIG_WORLD ("abx")
#define PI 3.14159265358979323846
#define PRINT_PRETTY(MSG, ...) printf(MSG, __VA_ARGS__)
struct BirdOrRodent
{
union {
int legs;
double wingspan;
};
};
namespace {
struct Mouse
{};
}
#endif