-
Notifications
You must be signed in to change notification settings - Fork 6
/
Defines.h
63 lines (44 loc) · 1.28 KB
/
Defines.h
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
* Defines.h
*
* Created on: Mar 22, 2011
* Author: nimrod
*/
#ifndef DEFINES_H_
#define DEFINES_H_
#include <string>
using std::string;
namespace differential {
struct Defines {
static const string kArrayIndexPostfix;
static const string kArrayIndexPrefix;
static const string kArrayReadPrefix;
static const string kArrayUpdatePrefix;
static const string kLabelPrefix;
static const string kLabelEnd;
static const string kLabelStart;
static const string kTagPrefix;
static const string kTagPostfix;
static const string kTagParamDef;
static const string kInitPrefix;
static const string kGuardPrefix;
static const string kGuardType;
static const string kGuardTypedef;
static const string kGeneralTypedefs;
static const string kCorrPointPrefix;
static const string kRetGuard;
static const string kRetGuardType;
static const string kRetGuardTypedef;
static const string kRetVal;
static const string kAssertPrefix;
static const string kTempPrefix;
static const string kPatchedFilenamePrefix;
static const string kGuardedFilenamePrefix;
static const string kTaggedFilenamePrefix;
static const string kUnionedFilenamePrefix;
static const string kInlinedFilenamePrefix;
static const string kResultsFilenamePrefix;
static const string kTypedefsFilenamePrefix;
};
}
#endif /* DEFINES_H_ */