home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PFontDrawing.cpp ----------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PFontDrawing.html
- *-------------------------------------------------------------------------
- */
-
- #include "PFontDrawing.h"
- #include "PCommand.h"
-
- const size_t REQUEST_SIZE = 4;
-
- PFontDrawing::PFontDrawing(short bIgnore, short cPresrvShape)
- {
- short x[2];
- x[0] = bIgnore;
- x[1] = cPresrvShape;
- PCommand command(pm_fontdrawing, x, REQUEST_SIZE);
- }
-
- PFontDrawing::PFontDrawing(short cPresrvShape)
- {
- short x[2];
- x[0] = 0;
- x[1] = cPresrvShape;
- PCommand command(pm_fontdrawing, x, REQUEST_SIZE);
- }
-
- // end of PFontDrawing.cpp
-