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 / pnewlayer.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-16  |  640 b   |  34 lines

  1. /*
  2.  *--- PNewLayer.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:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PNewLayer__
  10. #define __PNewLayer__
  11.  
  12. class PNewLayer
  13. {
  14.  
  15. public:
  16.  
  17.     PNewLayer(
  18.                 const char     * sLayerName,
  19.                 short         nShow,
  20.                 short         nLock,
  21.                 short         nColorIndex,
  22.                 long         lRed,
  23.                 long         lGreen,
  24.                 long         lBlue    );
  25.  
  26. private:
  27.  
  28.     PNewLayer();
  29. };
  30.  
  31. #endif
  32.  
  33. // end of PNewLayer.h
  34.