From: Alistair Leslie-Hughes leslie_alistair@hotmail.com
--- include/gdiplustypes.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+)
diff --git a/include/gdiplustypes.h b/include/gdiplustypes.h index 7f72b9fa23f..a9905327ecd 100644 --- a/include/gdiplustypes.h +++ b/include/gdiplustypes.h @@ -224,6 +224,24 @@ public: } };
+/* FIXME: missing the methods. */ +class SizeF +{ +public: + REAL Width; + REAL Height; + + SizeF() + : Width(0.0f), Height(0.0f) + { + } + + SizeF(REAL width, REAL height) + : Width(width), Height(height) + { + } +}; + class CharacterRange { public: