home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PPrint.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 PPrint.html
- *-------------------------------------------------------------------------
- */
-
- #include "PPrint.h"
- #include "PRequestBuf.h"
- #include "PCommand.h"
-
- PPrint::PPrint
- ( short nCopies,
- short nFirstPage,
- short nLastPage,
- const char * fPrintToDisk,
- const char * sPCPrinter )
- {
- PRequestBuf request(strlen(fPrintToDisk) + strlen(sPCPrinter) + 10);
-
- request << nCopies << nFirstPage << nLastPage << fPrintToDisk << sPCPrinter;
-
- PCommand command(pm_print, request);
- }
-
- // end of PPrint.cpp
-