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

  1. /*
  2.  *--- PPrintOptions.h -----------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PPrintOptions__
  10. #define __PPrintOptions__
  11.  
  12. #include "PMTypes.h"
  13.  
  14. class PPrintOptions
  15. {
  16.  
  17. public:
  18.  
  19.     PPrintOptions
  20.       (    short    cScaleType,
  21.         short    nVal,
  22.         short    cDuplex,
  23.         PMBool    bMarks,
  24.         PMBool    bPageInfo,
  25.         short    cTiling,
  26.         long    xOverlap );
  27.  
  28. private:
  29.  
  30.     PPrintOptions();
  31. };
  32.  
  33. #endif
  34.  
  35. // end of PPrintOptions.h
  36.