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 / pcreatepolygon.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-16  |  827 b   |  32 lines

  1. /*
  2.  *--- PCreatePolygon.h ----------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 3:29 PM by Paul Ferguson.
  5.  *
  6.  *  Description: This class is a little different than most other commands.
  7.  * The class client must create a complete PRequestBuf object and pass it
  8.  * into the constructor.  Refer to the SDK Guide for information about the
  9.  * format of the PCreatePolygon command parameters.
  10.  *-------------------------------------------------------------------------
  11.  */
  12. #ifndef __PCreatePolygon__
  13. #define __PCreatePolygon__
  14.  
  15. class PRequestBuf;
  16.  
  17. class PCreatePolygon
  18. {
  19.  
  20. public:
  21.  
  22.     PCreatePolygon(PRequestBuf& request);
  23.  
  24. private:
  25.  
  26.     PCreatePolygon();
  27. };
  28.  
  29. #endif
  30.  
  31. // end of PCreatePolygon.h
  32.