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 / pbook.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-15  |  649 b   |  31 lines

  1. /*
  2.  *--- PBook.h -------------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 3:46 PM by Paul Ferguson.
  5.  *
  6.  * Description:  This class expects the client to build a
  7.  * valid request buffer that contains the cAutoNumber flag,
  8.  * nNumOfPubs, and the list of pub names.
  9.  *-------------------------------------------------------------------------
  10.  */
  11. #ifndef __PBook__
  12. #define __PBook__
  13.  
  14. class PRequestBuf;
  15.  
  16. class PBook
  17. {
  18.  
  19. public:
  20.  
  21.     PBook(PRequestBuf& request);
  22.  
  23. private:
  24.  
  25.     PBook();
  26. };
  27.  
  28. #endif
  29.  
  30. // end of PBook.h
  31.