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

  1. /*
  2.  *--- PSaveAs.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 __PSaveAs__
  10. #define __PSaveAs__
  11.  
  12. #include "PMTypes.h"
  13. #include "PKeywords.h"
  14.  
  15. class PSaveAs
  16. {
  17.  
  18. public:
  19.  
  20.     PSaveAs
  21.       (    const char *    fPubname,
  22.         eKind            cKind = kKindPublication,
  23.         eCopy            cCopyWhat = kCopyNone,
  24.         PMBool            bPreview = false );
  25.  
  26. private:
  27.  
  28.     PSaveAs();
  29. };
  30.  
  31. #endif
  32.  
  33. // end of PSaveAs.h
  34.