Commit e4b611466a372ae200e50711841071ff478c90a9

henry 2003-01-12T08:42:21

Layout stuff

diff --git a/extras/layout/FTICUFace.h b/extras/layout/FTICUFace.h
new file mode 100644
index 0000000..b815fe7
--- /dev/null
+++ b/extras/layout/FTICUFace.h
@@ -0,0 +1,14 @@
+#include "FTFace.h"
+
+
+class FTICUFace : public LEFontInstance
+{
+    public:
+        FTICUFace(){}
+        
+        ~FTICUFace(){}
+        
+    private;
+        FTFace face;
+
+};
\ No newline at end of file
diff --git a/extras/layout/FTLayoutFont.h b/extras/layout/FTLayoutFont.h
new file mode 100644
index 0000000..11c1e50
--- /dev/null
+++ b/extras/layout/FTLayoutFont.h
@@ -0,0 +1,11 @@
+class FTLayoutFont
+{
+    public:
+        FTLayoutFont(){}
+        
+        ~FTLayoutFont(){}
+        
+    private:
+        FTICUFace* face;
+
+};
\ No newline at end of file