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 / ptabs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-12  |  842 b   |  32 lines

  1. /*
  2.  *--- PTabs.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: This class is a little different than most other commands.
  7.  * The class client must create a complete PRequestBuf object and pass it
  8.  * into the constructor. Refer to the SDK Guide for information about the
  9.  * format of the Tabs command parameters.
  10.  *
  11.  * The default constructor clears all tabs and resets the ruler to the
  12.  * default settings.
  13.  *-------------------------------------------------------------------------
  14.  */
  15. #ifndef __PTabs__
  16. #define __PTabs__
  17.  
  18. class PRequestBuf;
  19.  
  20. class PTabs
  21. {
  22.  
  23. public:
  24.  
  25.     PTabs();
  26.     PTabs(PRequestBuf& theRequest);
  27. };
  28.  
  29. #endif
  30.  
  31. // end of PTabs.h
  32.