From 2b7ca2304a9b17568fac57a0bceba72b9c9ab580 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 17 Feb 2012 18:59:41 +0000 Subject: unify include guard defines, __$FILENAME__ without the underscores these clogged up the namespace for autocompleation which was annoying. --- intern/boolop/extern/BOP_Interface.h | 4 ++-- intern/boolop/intern/BOP_BBox.h | 4 ++-- intern/boolop/intern/BOP_BSPNode.h | 4 ++-- intern/boolop/intern/BOP_BSPTree.h | 4 ++-- intern/boolop/intern/BOP_Chrono.h | 4 ++-- intern/boolop/intern/BOP_Edge.h | 4 ++-- intern/boolop/intern/BOP_Face.h | 4 ++-- intern/boolop/intern/BOP_Face2Face.h | 4 ++-- intern/boolop/intern/BOP_Indexs.h | 4 ++-- intern/boolop/intern/BOP_MathUtils.h | 4 ++-- intern/boolop/intern/BOP_Merge.h | 4 ++-- intern/boolop/intern/BOP_Merge2.h | 4 ++-- intern/boolop/intern/BOP_Mesh.h | 4 ++-- intern/boolop/intern/BOP_Segment.h | 4 ++-- intern/boolop/intern/BOP_Splitter.h | 4 ++-- intern/boolop/intern/BOP_Tag.h | 4 ++-- intern/boolop/intern/BOP_Triangulator.h | 4 ++-- intern/boolop/intern/BOP_Vertex.h | 4 ++-- 18 files changed, 36 insertions(+), 36 deletions(-) (limited to 'intern/boolop') diff --git a/intern/boolop/extern/BOP_Interface.h b/intern/boolop/extern/BOP_Interface.h index eee0a2478ca..fbada7dcab5 100644 --- a/intern/boolop/extern/BOP_Interface.h +++ b/intern/boolop/extern/BOP_Interface.h @@ -29,8 +29,8 @@ * \ingroup boolop */ -#ifndef BOP_INTERFACE_H -#define BOP_INTERFACE_H +#ifndef __BOP_INTERFACE_H__ +#define __BOP_INTERFACE_H__ #include "../../bsp/intern/BSP_CSGMesh.h" diff --git a/intern/boolop/intern/BOP_BBox.h b/intern/boolop/intern/BOP_BBox.h index 266ffd9b0b4..c58bb704fc3 100644 --- a/intern/boolop/intern/BOP_BBox.h +++ b/intern/boolop/intern/BOP_BBox.h @@ -30,8 +30,8 @@ */ -#ifndef BOP_BBOX_H -#define BOP_BBOX_H +#ifndef __BOP_BBOX_H__ +#define __BOP_BBOX_H__ #include "MT_Point3.h" #include "BOP_MathUtils.h" diff --git a/intern/boolop/intern/BOP_BSPNode.h b/intern/boolop/intern/BOP_BSPNode.h index 9f924407b62..e8646cd904c 100644 --- a/intern/boolop/intern/BOP_BSPNode.h +++ b/intern/boolop/intern/BOP_BSPNode.h @@ -30,8 +30,8 @@ */ -#ifndef BOP_BSPNODE_H -#define BOP_BSPNODE_H +#ifndef __BOP_BSPNODE_H__ +#define __BOP_BSPNODE_H__ #include "MT_Plane3.h" #include "BOP_Tag.h" diff --git a/intern/boolop/intern/BOP_BSPTree.h b/intern/boolop/intern/BOP_BSPTree.h index 41570de2377..b3abd55bf2a 100644 --- a/intern/boolop/intern/BOP_BSPTree.h +++ b/intern/boolop/intern/BOP_BSPTree.h @@ -30,8 +30,8 @@ */ -#ifndef BOP_BSPTREE_H -#define BOP_BSPTREE_H +#ifndef __BOP_BSPTREE_H__ +#define __BOP_BSPTREE_H__ #include "BOP_BSPNode.h" #include "BOP_Mesh.h" diff --git a/intern/boolop/intern/BOP_Chrono.h b/intern/boolop/intern/BOP_Chrono.h index 1adbfa3edb1..8f09eeae82e 100644 --- a/intern/boolop/intern/BOP_Chrono.h +++ b/intern/boolop/intern/BOP_Chrono.h @@ -30,8 +30,8 @@ */ -#ifndef BOP_CHRONO_H -#define BOP_CHRONO_H +#ifndef __BOP_CHRONO_H__ +#define __BOP_CHRONO_H__ #include diff --git a/intern/boolop/intern/BOP_Edge.h b/intern/boolop/intern/BOP_Edge.h index 867ad5df9f1..fd2f53b1aa4 100644 --- a/intern/boolop/intern/BOP_Edge.h +++ b/intern/boolop/intern/BOP_Edge.h @@ -30,8 +30,8 @@ */ -#ifndef BOP_EDGE_H -#define BOP_EDGE_H +#ifndef __BOP_EDGE_H__ +#define __BOP_EDGE_H__ #include "BOP_Indexs.h" #include "BOP_Misc.h" diff --git a/intern/boolop/intern/BOP_Face.h b/intern/boolop/intern/BOP_Face.h index 6f79b8b17c0..4f09618e23a 100644 --- a/intern/boolop/intern/BOP_Face.h +++ b/intern/boolop/intern/BOP_Face.h @@ -30,8 +30,8 @@ */ -#ifndef BOP_FACE_H -#define BOP_FACE_H +#ifndef __BOP_FACE_H__ +#define __BOP_FACE_H__ #include "BOP_Tag.h" #include "MT_Plane3.h" diff --git a/intern/boolop/intern/BOP_Face2Face.h b/intern/boolop/intern/BOP_Face2Face.h index c4404295610..9809084ce3b 100644 --- a/intern/boolop/intern/BOP_Face2Face.h +++ b/intern/boolop/intern/BOP_Face2Face.h @@ -30,8 +30,8 @@ */ -#ifndef BOP_FACE2FACE_H -#define BOP_FACE2FACE_H +#ifndef __BOP_FACE2FACE_H__ +#define __BOP_FACE2FACE_H__ #include "BOP_Mesh.h" #include "BOP_Segment.h" diff --git a/intern/boolop/intern/BOP_Indexs.h b/intern/boolop/intern/BOP_Indexs.h index 4e71c66d4a4..e001f412c9f 100644 --- a/intern/boolop/intern/BOP_Indexs.h +++ b/intern/boolop/intern/BOP_Indexs.h @@ -30,8 +30,8 @@ */ -#ifndef BOP_Indexs_H -#define BOP_Indexs_H +#ifndef __BOP_INDEXS_H__ +#define __BOP_INDEXS_H__ #include diff --git a/intern/boolop/intern/BOP_MathUtils.h b/intern/boolop/intern/BOP_MathUtils.h index 27e5e100b8c..38acd98dd3d 100644 --- a/intern/boolop/intern/BOP_MathUtils.h +++ b/intern/boolop/intern/BOP_MathUtils.h @@ -32,8 +32,8 @@ */ -#ifndef BOP_MATHUTILS_H -#define BOP_MATHUTILS_H +#ifndef __BOP_MATHUTILS_H__ +#define __BOP_MATHUTILS_H__ #include #include diff --git a/intern/boolop/intern/BOP_Merge.h b/intern/boolop/intern/BOP_Merge.h index 5a24579e7b5..9d6d7030ba7 100644 --- a/intern/boolop/intern/BOP_Merge.h +++ b/intern/boolop/intern/BOP_Merge.h @@ -30,8 +30,8 @@ */ -#ifndef BOP_MERGE_H -#define BOP_MERGE_H +#ifndef __BOP_MERGE_H__ +#define __BOP_MERGE_H__ #include "BOP_Misc.h" diff --git a/intern/boolop/intern/BOP_Merge2.h b/intern/boolop/intern/BOP_Merge2.h index 78a4caff7d9..1e26a2576be 100644 --- a/intern/boolop/intern/BOP_Merge2.h +++ b/intern/boolop/intern/BOP_Merge2.h @@ -30,8 +30,8 @@ */ -#ifndef BOP_MERGE2_H -#define BOP_MERGE2_H +#ifndef __BOP_MERGE2_H__ +#define __BOP_MERGE2_H__ #include "BOP_Misc.h" diff --git a/intern/boolop/intern/BOP_Mesh.h b/intern/boolop/intern/BOP_Mesh.h index 271e97fe454..381557ec58b 100644 --- a/intern/boolop/intern/BOP_Mesh.h +++ b/intern/boolop/intern/BOP_Mesh.h @@ -32,8 +32,8 @@ */ -#ifndef BOP_MESH_H -#define BOP_MESH_H +#ifndef __BOP_MESH_H__ +#define __BOP_MESH_H__ #include "BOP_Vertex.h" #include "BOP_Edge.h" diff --git a/intern/boolop/intern/BOP_Segment.h b/intern/boolop/intern/BOP_Segment.h index 4a2b4509846..5a49ae844c4 100644 --- a/intern/boolop/intern/BOP_Segment.h +++ b/intern/boolop/intern/BOP_Segment.h @@ -30,8 +30,8 @@ */ -#ifndef BOP_SEGMENT_H -#define BOP_SEGMENT_H +#ifndef __BOP_SEGMENT_H__ +#define __BOP_SEGMENT_H__ #include "BOP_Indexs.h" #include diff --git a/intern/boolop/intern/BOP_Splitter.h b/intern/boolop/intern/BOP_Splitter.h index a14f46510d6..8d79b89aa91 100644 --- a/intern/boolop/intern/BOP_Splitter.h +++ b/intern/boolop/intern/BOP_Splitter.h @@ -30,8 +30,8 @@ */ -#ifndef BOP_SPLITTER_H -#define BOP_SPLITTER_H +#ifndef __BOP_SPLITTER_H__ +#define __BOP_SPLITTER_H__ #include "BOP_MathUtils.h" #include "BOP_Segment.h" diff --git a/intern/boolop/intern/BOP_Tag.h b/intern/boolop/intern/BOP_Tag.h index 79d13709cd4..b7438275e90 100644 --- a/intern/boolop/intern/BOP_Tag.h +++ b/intern/boolop/intern/BOP_Tag.h @@ -33,8 +33,8 @@ #include #include -#ifndef BOP_TAG_H -#define BOP_TAG_H +#ifndef __BOP_TAG_H__ +#define __BOP_TAG_H__ #define IN_TAG 0x02 // Below the plane #define ON_TAG 0x00 // On the plane diff --git a/intern/boolop/intern/BOP_Triangulator.h b/intern/boolop/intern/BOP_Triangulator.h index 9fb314f894d..55dd51d09c3 100644 --- a/intern/boolop/intern/BOP_Triangulator.h +++ b/intern/boolop/intern/BOP_Triangulator.h @@ -30,8 +30,8 @@ */ -#ifndef BOP_TRIANGULATOR_H -#define BOP_TRIANGULATOR_H +#ifndef __BOP_TRIANGULATOR_H__ +#define __BOP_TRIANGULATOR_H__ #include "BOP_MathUtils.h" #include "BOP_Mesh.h" diff --git a/intern/boolop/intern/BOP_Vertex.h b/intern/boolop/intern/BOP_Vertex.h index 3f1780c5081..1aae2207972 100644 --- a/intern/boolop/intern/BOP_Vertex.h +++ b/intern/boolop/intern/BOP_Vertex.h @@ -30,8 +30,8 @@ */ -#ifndef BOP_VERTEX_H -#define BOP_VERTEX_H +#ifndef __BOP_VERTEX_H__ +#define __BOP_VERTEX_H__ #include "BOP_Tag.h" #include "BOP_Indexs.h" -- cgit v1.2.3