home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PView.cpp ----------------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Thu, Oct 12, 1995 @ 10:55 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PView.html
- *-------------------------------------------------------------------------
- */
-
- #include "PView.h"
-
- #include "PRequestBuf.h"
-
- #include "PCommand.h"
-
- PView::PView(short nPercentage, PMBool bAllPages = false)
- {
- char x[4];
-
- PRequestBuf request(x);
- request << nPercentage << bAllPages;
-
- PCommand command(pm_view, request);
- }
-
-
- // end of PView.cpp
-