Commit 9b56d729c42a3594d7ef490bda35dd7ad311cea6

henry 2004-04-09T05:22:32

Added comments for new functions

diff --git a/include/FTFace.h b/include/FTFace.h
index c87666a..d2664a4 100755
--- a/include/FTFace.h
+++ b/include/FTFace.h
@@ -81,7 +81,18 @@ class FTGL_EXPORT FTFace
 
         unsigned int UnitsPerEM() const;
 
+        /**
+         * Get the number of character maps in this face.
+         *
+         * @return character map count.
+         */
         unsigned int CharMapCount();
+
+        /**
+         * Get a list of character maps in this face.
+         *
+         * @return pointer to the first encoding.
+         */
         FT_Encoding* CharMapList();
         
         /**
diff --git a/include/FTFont.h b/include/FTFont.h
index 767ce37..cc994b9 100755
--- a/include/FTFont.h
+++ b/include/FTFont.h
@@ -82,8 +82,19 @@ class FTGL_EXPORT FTFont
          *                      set correctly
          */
         bool CharMap( FT_Encoding encoding );
-        
+
+        /**
+         * Get the number of character maps in this face.
+         *
+         * @return character map count.
+         */
         unsigned int CharMapCount();
+
+        /**
+         * Get a list of character maps in this face.
+         *
+         * @return pointer to the first encoding.
+         */
         FT_Encoding* CharMapList();
         
         /**