File: creg_cond.h

package info (click to toggle)
spring 88.0%2Bdfsg1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 41,524 kB
  • sloc: cpp: 343,114; ansic: 38,414; python: 12,257; java: 12,203; awk: 5,748; sh: 1,204; xml: 997; perl: 405; objc: 192; makefile: 181; php: 134; sed: 2
file content (41 lines) | stat: -rwxr-xr-x 1,384 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */

#ifndef _CREG_COND_H_
#define _CREG_COND_H_

// AIs which want to use creg have to specify this when compiling:
// '-DUSING_CREG'
#if defined BUILDING_AI && !defined USING_CREG
	#define NOT_USING_CREG
#elif !defined NOT_USING_CREG // defined BUILDING_AI && !defined USING_CREG
	#if !defined USING_CREG
		#define USING_CREG
	#endif // !defined USING_CREG
	#include "creg.h"
#endif // defined BUILDING_AI && !defined USING_CREG

#ifdef NOT_USING_CREG
#include "ISerializer.h" // prevent some compiler errors
// define all creg preprocessor macros from creg_cond.h to nothing
#define CR_DECLARE(TCls)
#define CR_DECLARE_STRUCT(TStr)
#define CR_DECLARE_SUB(cl)
#define CR_BIND_DERIVED(TCls, TBase, ctor_args)
#define CR_BIND_DERIVED(TCls, TBase, ctor_args)
#define CR_BIND(TCls, ctor_args)
#define CR_BIND_DERIVED_INTERFACE(TCls, TBase)
#define CR_BIND_INTERFACE(TCls)
#define CR_REG_METADATA(TClass, Members)
#define CR_REG_METADATA_SUB(TSuperClass, TSubClass, Members)
#define CR_MEMBER(Member)
#define CR_ENUM_MEMBER(Member)
#define CR_RESERVED(Size)
#define CR_SETFLAG(Flag)
#define CR_MEMBER_SETFLAG(Member, Flag)
#define CR_MEMBER_BEGINFLAG(Flag)
#define CR_MEMBER_ENDFLAG(Flag)
#define CR_SERIALIZER(SerializeFunc)
#define CR_POSTLOAD(PostLoadFunc)
#endif // NOT_USING_CREG

#endif // _CREG_COND_H_