home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PPageOptions.cpp ----------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Thu, Oct 12, 1995 @ 10:48 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PPageOptions.html
- *-------------------------------------------------------------------------
- */
-
- #include "PPageOptions.h"
- #include "PRequestBuf.h"
- #include "PCommand.h"
-
-
- void PPageOptions::SetOptions(PMBool bDoubleSided, PMBool bFacingPages)
- {
- char temp[8];
- PRequestBuf request(temp);
-
- request << bDoubleSided << bFacingPages;
-
- PCommand command(pm_pageoptions, request);
- }
-
- // end of PPageOptions.cpp
-