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 / pblackattributes.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-04  |  764 b   |  37 lines

  1. /*
  2.  *--- PBlackAttributes.h --------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 3:40 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PBlackAttributes__
  10. #define __PBlackAttributes__
  11. #include "PMTypes.h"
  12.  
  13. class PGetBlackAttributes;
  14.  
  15. class PBlackAttributes
  16. {
  17.  
  18. public:
  19.  
  20.     PBlackAttributes
  21.       (    short dBlackLimit,
  22.         PMBool  bOvrprntTxt,
  23.         short dOvrprntTxtSz,
  24.         PMBool  bOvrprntLines,
  25.         PMBool  bOvrprntFills);
  26.     
  27.     PBlackAttributes(const PGetBlackAttributes& blackAttr);
  28.  
  29. private:
  30.     
  31.     PBlackAttributes();
  32. };
  33.  
  34. #endif
  35.  
  36. // end of PBlackAttributes.h
  37.