Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-02-12 18:40:08 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-12 18:40:08 +0400
commit2fcb6d058ea0c50f7f1c4d13e13708ddbacac71c (patch)
treeba40705883694034201002ba92041e09e015e10e /source/blender/bmesh/bmesh_operators.h
parent07ca47fc522d5bc9960bd89c9a35641e48ab8c21 (diff)
style cleanup for bmesh headers
- use consistant header guards - correct doxy comments - remove ED_toolmode.h (unused)
Diffstat (limited to 'source/blender/bmesh/bmesh_operators.h')
-rw-r--r--source/blender/bmesh/bmesh_operators.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/source/blender/bmesh/bmesh_operators.h b/source/blender/bmesh/bmesh_operators.h
index 22a841c1b61..ad4bd801d0f 100644
--- a/source/blender/bmesh/bmesh_operators.h
+++ b/source/blender/bmesh/bmesh_operators.h
@@ -20,8 +20,12 @@
* ***** END GPL LICENSE BLOCK *****
*/
-#ifndef _BMESH_OPERATORS_H
-#define _BMESH_OPERATORS_H
+#ifndef __BMESH_OPERATORS_H__
+#define __BMESH_OPERATORS_H__
+
+/** \file blender/bmesh/bmesh_operators.h
+ * \ingroup bmesh
+ */
/*see comments in intern/bmesh_opdefines.c for documentation of specific operators*/
@@ -98,4 +102,4 @@ void BM_esubdivideflag(struct Object *obedit, BMesh *bm, int flag, float smooth,
float fractal, int beauty, int numcuts, int seltype,
int cornertype, int singleedge, int gridfill, int seed);
-#endif
+#endif /* __BMESH_OPERATORS_H__ */