Added comments for new functions
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
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();
/**