home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PChangeAll.cpp ------------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 3:57 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file ChangeAll.html
- *-------------------------------------------------------------------------
- */
-
- #include "PChangeAll.h"
- #include "PRequestBuf.h"
- #include "PCommand.h"
-
- PChangeAll::PChangeAll
- ( const char * sFindWhat,
- const char * sChangeTo,
- short cSearchRange,
- PMBool bMatchCase,
- PMBool bWholeWord,
- PMBool bClearAttr )
- {
- PRequestBuf request(strlen(sFindWhat) + strlen(sChangeTo) + 20);
-
- request << sFindWhat
- << sChangeTo
- << cSearchRange
- << bMatchCase
- << bWholeWord
- << bClearAttr;
-
- PCommand command(pm_changeall, request);
- }
-
- // end of PChangeAll.cpp
-