home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PColumnGuides.cpp ---------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 4:49 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PColumnGuides.html
- *-------------------------------------------------------------------------
- */
-
- #include "PColumnGuides.h"
- #include "PRequestBuf.h"
- #include "PCommand.h"
-
- const size_t REQUEST_SIZE = 10;
-
- PColumnGuides::PColumnGuides(short nColumns, long xGutter, eColumn cPage, PMBool bAdjust)
- {
- char buf[REQUEST_SIZE];
-
- PRequestBuf request(buf);
-
- request << nColumns << xGutter << (short) cPage << (short) bAdjust;
-
- PCommand command(pm_columnguides, request);
- }
-
- // end of PColumnGuides.cpp
-