home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PSelectLayer.cpp -------------------------------------------------
- * Copyright (c) 1996 Adobe Systems Incorporated. All rights reserved.
- * Created on Tue, Oct 15, 1996 @ 4:55 PM.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PSelectLayer.html
- *-------------------------------------------------------------------------
- */
-
- #include "PSelectLayer.h"
- #include "PRequestBuf.h"
-
- #include "PCommand.h"
-
- PSelectLayer::PSelectLayer(const char * sLayerName, PMBool bExtend)
- {
- PRequestBuf request(strlen(sLayerName) + sizeof(PMBool) + 4);
-
- request << sLayerName << bExtend;
-
- PCommand command(pm_selectlayer, request);
- }
-
- // end of PSelectLayer.cpp
-