home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / queries / pgetppdfontlocation.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-15  |  737 b   |  24 lines

  1. /*
  2.  *--- PGetPPDFontLocation.cpp ---------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:49 PM by Paul Ferguson.
  5.  *
  6.  * Description:  For notes about this class, refer to the
  7.  * PCL documentation file PGetPPDFontLocation.html
  8.  *-------------------------------------------------------------------------
  9.  */
  10.  
  11. #include "PGetPPDFontLocation.h"
  12. #include "PQuery.h"
  13. #include "PRequestBuf.h"
  14.  
  15. PGetPPDFontLocation::PGetPPDFontLocation(const char * sPSFontName)
  16. {
  17.     PRequestBuf request(strlen(sPSFontName) + 2);
  18.     request << sPSFontName;
  19.  
  20.     PQuery query(pm_getppdfontlocation, cLocation);
  21. }
  22.  
  23. // end of PGetPPDFontLocation.cpp
  24.