home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PGetPageID.cpp ------------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Mon, Oct 16, 1995 @ 10:42 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PGetPageID.html
- *-------------------------------------------------------------------------
- */
-
- #include "PGetPageID.h"
- #include "PRequestBuf.h"
-
- PGetPageID::PGetPageID(short nPageNumber)
- {
- char temp[2]; // one short
- PRequestBuf request(temp);
- request << nPageNumber;
-
- PQuery query(pm_getpageid, request, itsLong);
- }
-
- // end of PGetPageID.cpp
-