From: kramm Date: Sat, 20 Oct 2001 20:06:45 +0000 (+0000) Subject: SWFFont now has a destructor X-Git-Tag: release-0-0-2~38 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=a0a0f9e7de92c80c09204da856e24b9601463615 SWFFont now has a destructor --- diff --git a/pdf2swf/swfoutput.h b/pdf2swf/swfoutput.h index 2b1e742..3351f60 100644 --- a/pdf2swf/swfoutput.h +++ b/pdf2swf/swfoutput.h @@ -30,6 +30,8 @@ class SWFFont { T1_OUTLINE**outline; char**charname; + char*used; + char*name; int charnum; @@ -37,8 +39,10 @@ class SWFFont int t1id; char*fontid; + unsigned int swfid; SWFFont(char*name, int t1id, char*filename); + SWFFont::~SWFFont(); T1_OUTLINE*getOutline(char*charname); char*getName(); char*getCharName(int t);