home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PGetFontDrawing.cpp -------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Thu, Oct 12, 1995 @ 10:11 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PGetFontDrawing.html
- *-------------------------------------------------------------------------
- */
-
- #include "PQuery.h"
- #include "PGetFontDrawing.h"
-
- PGetFontDrawing::PGetFontDrawing()
- {
- short temp[2];
-
- PQuery query(pm_getfontdrawing, (char *) temp, 4);
- bIgnore = temp[0] ? true : false;
- cPresrvShape = temp[1];
- }
-
- // end of PGetFontDrawing.cpp
-