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 / ppage.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-13  |  529 b   |  29 lines

  1. /*
  2.  *--- PPage.h -------------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Thu, Oct 12, 1995 @ 10:53 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PPage__
  10. #define __PPage__
  11.  
  12. #include "PMTypes.h"
  13.  
  14. class PPage
  15. {
  16.  
  17. public:
  18.  
  19.     PPage(short pageNumber, char * sMasterName = NULL);
  20.  
  21. private:
  22.  
  23.     PPage();
  24. };
  25.  
  26. #endif
  27.  
  28. // end of PPage.h
  29.