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 / plinkframes.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-15  |  781 b   |  33 lines

  1. /*
  2.  *--- PLinkFrames.h -----------------------------------------------------
  3.  * Copyright (c) 1996 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Tue, Oct 15, 1996 @ 4:13 PM.
  5.  *
  6.  * Description: 
  7.  * This class is a little different than most other commands.
  8.  * The class client must create a complete PRequestBuf object and pass it
  9.  * into the constructor.  Refer to the SDK Guide for information about the
  10.  * format of the LinkFrames command parameters.
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef __PLinkFrames__
  14. #define __PLinkFrames__
  15.  
  16. class PRequestBuf;
  17.  
  18. class PLinkFrames
  19. {
  20.  
  21. public:
  22.  
  23.     PLinkFrames(PRequestBuf& request);
  24.  
  25. private:
  26.  
  27.     PLinkFrames();
  28. };
  29.  
  30. #endif
  31.  
  32. // end of PLinkFrames.h
  33.