home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PMove.cpp -----------------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PMove.html
- *-------------------------------------------------------------------------
- */
-
- #include "PMove.h"
- #include "PRequestBuf.h"
- #include "PCommand.h"
-
- const size_t REQUEST_SIZE2 = 6;
-
- PMove::PMove(short cHandle, long xyLocation)
- {
- char * temp[REQUEST_SIZE2];
- PRequestBuf request(temp);
-
- request << cHandle << xyLocation;
-
- PCommand command(pm_move, request);
- }
-
-
- const size_t REQUEST_SIZE3 = 10;
-
- PMove::PMove(short cHandle, long xLocation, long yLocation)
- {
- char * temp[REQUEST_SIZE3];
- PRequestBuf request(temp);
-
- request << cHandle << xLocation << yLocation;
-
- PCommand command(pm_move, request);
- }
-
-
-
- // end of PMove.cpp
-