home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PPrintInk.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 PPrintInk.html
- *-------------------------------------------------------------------------
- */
-
- #include "PPrintInk.h"
- #include "PRequestBuf.h"
- #include "PCommand.h"
-
- PPrintInk::PPrintInk
- ( const char * sName,
- PMBool bPrintInk,
- const char * sAngle,
- const char * sRuling )
- {
- PRequestBuf request(strlen(sName) + strlen(sAngle) + strlen(sRuling) + 8);
-
- request << sName << bPrintInk << sAngle << sRuling;
-
- PCommand command(pm_printink, request);
- }
-
- // end of PPrintInk.cpp
-