Commit b84dd5f1d8387a53d49b9d67987e4cbe3c4cbc38

henry 2002-02-16T06:15:31

Changed formatting

diff --git a/include/FTGlyph.h b/include/FTGlyph.h
index 6494d64..3f70cda 100755
--- a/include/FTGlyph.h
+++ b/include/FTGlyph.h
@@ -16,15 +16,20 @@
 class FTGL_EXPORT FTBBox
 {
 	public:
+		/**
+		 * Default Constructor
+		 *
+		 *
+		 */
 		FTBBox()
-		:	x1(0),
-			y1(0),
-			z1(0),
-			x2(0),
-			y2(0),
-			z2(0)
+		:	x1(0), y1(0), z1(0), x2(0), y2(0), z2(0)
 		{}
 		
+		/**
+		 * Constructor
+		 *
+		 *
+		 */
 		FTBBox( FT_Glyph glyph)
 		{
 			FT_BBox bbox;
@@ -38,15 +43,18 @@ class FTGL_EXPORT FTBBox
 			z2 = 0;	
 		}		
 		
+		/**
+		 * Constructor
+		 *
+		 *
+		 */
 		FTBBox( int a, int b, int c, int d, int e, int f)
-		:	x1(a),
-			y1(b),
-			z1(c),
-			x2(d),
-			y2(e),
-			z2(f)
+		:	x1(a), y1(b), z1(c), x2(d), y2(e), z2(f)
 		{}
 
+		/**
+		 * Destructor
+		 */
 		~FTBBox()
 		{}