home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / commands / pzeropoint.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-15  |  631 b   |  23 lines

  1. /*
  2.  *--- PZeroPoint.cpp ------------------------------------------------------------
  3.  * Copyright (c) 1996 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Tue, Oct 15, 1996 @ 11:20 AM.
  5.  *
  6.  * Description:  For notes about this class, refer to the
  7.  * PCL documentation file PZeroPoint.html
  8.  *-------------------------------------------------------------------------
  9.  */
  10.  
  11. #include "PZeroPoint.h"
  12. #include "PCommand.h"
  13.  
  14. PZeroPoint::PZeroPoint(long xCoord, long yCoord)
  15. {
  16.     long x[2];
  17.     x[0] = xCoord;
  18.     x[1] = yCoord;
  19.     PCommand command(pm_zeropoint, x, 4 * sizeof(long));
  20. }
  21.  
  22. // end of PZeroPoint.cpp
  23.